<!--
var intid = 0;

function ClearAll() {
	clearInterval(intid);
}
function RotateImages() {
	intid = window.setInterval(LoadNewImage,1750);
}
function LoadNewImage() {
	if(rotate_count == feature_images.length) {
		rotate_count = 0;
	}
	document.getElementById("MainFeatureImage").src = feature_images[rotate_count];
	rotate_count += 1;
}
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,status=no,menubar=no,scrollbar=no,resizable=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function jumpTo(elem,base) {
	if(elem.options[elem.selectedIndex].value != ""){
		window.location.href = base+"#"+elem.options[elem.selectedIndex].value;
	}
}

window.onUnload = ClearAll;
-->