<!--
    //ROLL OVER FOR IE 6
    startList = function() {
    if (document.all&&document.getElementById) 
    {
    	navRoot = document.getElementById("nav");
    	for (i=0; i<navRoot.childNodes.length; i++) 
    	{
    		node = navRoot.childNodes[i];
    		if (node.nodeName=="LI") 
    		{
    			node.onmouseover=function() 
    			{
    				this.className+=" over";
    			}
				node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
	window.onload=startList;
//-->
<!--
	//TABBED BOXES
	function changeTabsOn(tab) {
	document.getElementById(tab).style.color = "#003273";
	document.getElementById(tab).style.backgroundPosition = "0 0";
}
	function changeTabsOff(tab) {
	document.getElementById(tab).style.color = "#FFF";
	document.getElementById(tab).style.backgroundPosition = "0 -26px";
}
	function showTab(tab) {
	document.getElementById('centertab1').style.display = "none";
	document.getElementById('centertab2').style.display = "none";
	document.getElementById('centertab3').style.display = "none";
	//document.getElementById('centertab4').style.display = "none";
	//document.getElementById('centertab5').style.display = "none";
	document.getElementById(tab).style.display = "block";
}
//-->
<!--
	//CHANGE LOCATION DETAIL IMAGE
	function changeImage(imgID) {
	var currentID = document.currentLocation.currentID.value;
	if (imgID != currentID) {
		document.getElementById('locationdetail' + imgID).style.visibility = "visible";	
		document.getElementById('locationdetail' + currentID).style.visibility = "hidden";
		document.currentLocation.currentID.value = imgID;
	}
}
	//RESET LOCATION DETAIL IMAGE
	function returnImage() {
	var currentID = document.currentLocation.currentID.value;
	document.getElementById('locationdetail' + currentID).style.visibility = "hidden";
	document.getElementById('locationdetail1').style.visibility = "visible";
	document.currentLocation.currentID.value = "1";
}
//-->
<!--
	//CHANGE TAB CORNER STATE
	function changeNav(offset) {
	document.getElementById('navigation').style.backgroundPosition = "0 -" + offset + "px";
}
	//RESET TAB CORNER STATE
	function resetNav(curoffset) {
	document.getElementById('navigation').style.backgroundPosition = "0 -" + curoffset + "px";
}
//-->
<!--
	//LOGIN - HANDLE CHECK BOX VALUE VALIDATION
	function RemPass() {
	var remember = document.Form3.Remember.value;
	var checkval = document.Form3.CheckVal.value;
	if ((remember == 1) && (checkval == 0))
		{
		document.Form3.CheckVal.value = 1;
		}
	else
		{
		document.Form3.CheckVal.value = 0;
	}
}
//-->
<!--
	//OPEN POP-UP
	function PopWin(NewLocation, LocationLink, WVal, HVal) {
	window.open(NewLocation + "?url=" + LocationLink, "NewWindow", "width=" + WVal 
	+ ",height=" + HVal + ",scrollbars=yes,status=no,toolbar=no");	
}
//-->
<!--
	//GO TO NEW LOCATION IN PARENT WINDOW
	function GoTo(NewLocation) {
	self.opener.open(NewLocation);
	parent.close();	
	}
//-->
<!--
	//GO TO EMAIL CLIENT
	function GoToEmail(NewLocation) {
	location.href = NewLocation;
	parent.close();
	}
//-->
<!--
	//GO TO WEATHER DETAIL
	function GoToWeather(NewLocation) {
	location.href = NewLocation;
	}
//-->