<!--
    //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";
    					hideSelect();
    			}
				node.onmouseout=function() 
				{
					this.className=this.className.replace(" over", "");
						unhideSelect();
				}
			}
		}
	}
}
	window.onload=startList;
//-->
<!--
	//HIDE COMBO BOX ON MOUSE-OVER
	function hideSelect() {
		if (document.all)
		{
			document.all.fitters.style.visibility="hidden";
		}
	}
	
	function unhideSelect() {
		if (document.all)
		{
			document.all.fitters.style.visibility="visible";
		}
	}
//-->
<!--
	//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, HVal, WVal) {
	window.open(NewLocation, "NewWindow", "left=50,top=50,width=" + HVal 
	+ ",height=" + WVal + ",scrollbars=yes,status=no,toolbar=no");	
}
//-->
<!--
	//GO TO NEW LOCATION IN PARENT WINDOW
	function GoTo(NewLocation) {
	self.opener.location = NewLocation;
	parent.close();	
	}
//-->
