<!-- hide this stuff from other browsers

function UseLayers()
{
    //This function returns true if the browser is Netscape 4.x
    if (navigator.appName == "Microsoft Internet Explorer") return false;
    else {
        if (Number(String(navigator.appVersion).substring(0,1)) == 5) return false;
        else return true;
    }
}

document.write("<style type=\"text/css\">");
if (!UseLayers()) {
    document.write("A.DropDownAnchor:Active,A.DropDownAnchor:Link,A.DropDownAnchor:Visited{width : 100%;font-weight:500;font-size:11px;color:006600;padding-top:2px;padding-bottom:2px;padding-left:2px;padding-right:2px;text-decoration:none;}");
    document.write("A.DropDownAnchor:hover{width : 100%;font-weight:500;font-size:11px;color:ffffff;padding-top:2px;padding-bottom:2px;padding-left:2px;padding-right:2px;text-decoration:underline;}");
	document.write("A.menu_nav:ACTIVE,A.menu_nav:LINK,A.menu_nav:VISITED,A.menu_nav:HOVER{font-weight:500;font-size:11px;color:ffffff;text-decoration:underline;}")

} else {
    document.write("A.DropDownAnchor:Active,A.DropDownAnchor:Link,A.DropDownAnchor:Visited{font-weight:500;font-size:11px;color:006600;padding-top:2px;padding-bottom:2px;padding-left:2px;padding-right:2px;text-decoration:underline;}");
    document.write("A.DropDownAnchor:hover{font-weight:500;font-size:11px;color:ffffff;padding-top:2px;padding-bottom:2px;padding-left:2px;padding-right:2px;text-decoration:underline;}");
    document.write("A.menu_nav:ACTIVE,A.menu_nav:LINK,A.menu_nav:VISITED,A.menu_nav:HOVER{font-weight:500;font-size:11px;color:ffffff;text-decoration:underline;}")
}  
document.write("</style>"); 

///////////////////////
// Netscape Resize Fix
///////////////////////

function resizeFix() 
{
    if (widthCheck != window.innerWidth || heightCheck != window.innerHeight) {
        document.location.href = document.location.href;
    }
}




function ShowMenu()
{ 
    if (Timer) clearTimeout(Timer);

    if (UseLayers()) 
	{
		for (i = 0; i < menu_array.length; ++i) 
		{
			menu_array[i].visibility = "hidden";

			if (menu_item_array[i] != null) 
			{
				HighlightMenuItem(menu_item_array[i], false);
            }
        }

        for (n=0; n<arguments.length; n++) 
		{
            eval("document." + arguments[n]).visibility = "visible";

			var menu_item_td = eval("ItemFor_" + arguments[n]);

			if (menu_item_td != null) 
			{
				HighlightMenuItem(menu_item_td, true);
			}
        }               
    } 
	else 
	{
		for (i = 0; i < menu_array.length; ++i) 
		{
			menu_array[i].style.visibility = "hidden";

			if (menu_item_array[i] != null) 
			{
				HighlightMenuItem(menu_item_array[i], false);
            }
        }

        for (n=0; n<arguments.length; n++) 
		{
            var menu_div = document.getElementById(arguments[n]);
            var menu_item = document.getElementById("ItemFor_" + arguments[n]);

			if (menu_div != null) 
			{
				menu_div.style.visibility = "visible";
            }

			if (menu_item != null) 
			{
				HighlightMenuItem(menu_item, true);
            }
        }           
    }
}

function HighlightMenuItem(p_oMenuItemTD, p_bFlag)
{
    p_oMenuItemTD.bgColor = (p_bFlag ? "#ff6600" : "#ffffff");
}

var Timer; //Variant to set the Timeout to

function HideMenu()
{
    Timer = setTimeout("ShowMenu()", 500);
}


// end the hiding comment --> 