// JavaScript Document// JavaScript Documentvar detect = navigator.userAgent.toLowerCase();var OS,browser,version,total,thestring;var myTimeout;var sURL = unescape(window.location.pathname);function refresh(){    //  This version of the refresh function will cause a new    //  entry in the visitor's history.  It is provided for    //  those browsers that only support JavaScript 1.0.    //    window.location.href = sURL;}function checkIt(string){	place = detect.indexOf(string) + 1;	thestring = string;	return place;}if (checkIt('konqueror')){	browser = "Konqueror";	OS = "Linux";}else if (checkIt('safari')) browser = "Safari"else if (checkIt('omniweb')) browser = "OmniWeb"else if (checkIt('opera')) browser = "Opera"else if (checkIt('camino')) browser = "Camino";else if (checkIt('webtv')) browser = "WebTV";else if (checkIt('icab')) browser = "iCab"else if (checkIt('msie')) browser = "Internet Explorer"else if (!checkIt('compatible')){	browser = "Netscape Navigator"	version = detect.charAt(8);}else browser = "An unknown browser";if (!version) version = detect.charAt(place + thestring.length);if (!OS){	if (checkIt('linux')) OS = "Linux";	else if (checkIt('x11')) OS = "Unix";	else if (checkIt('mac')) OS = "Mac"	else if (checkIt('win')) OS = "Windows"	else OS = "an unknown operating system";}function ShowMenu(myNode){	var myParent = myNode;	var myNumKids = myParent.childNodes.length;		var divWidth;	var divHeight;		if(browser == "Internet Explorer")	{		for(var i=0;i<myNumKids;i++)		{			if(myParent.childNodes[i].nodeType == 1)			{				if(myParent.childNodes[i].className)				{					if(myParent.childNodes[i].className == 'menulist')					{						myParent.childNodes[i].style.display = 'block';						}				}			}			}	}	else if(browser == "Safari")	{		document.getElementById("flashobject").style.visibility = "hidden"				myTimeout = setTimeout('document.getElementById("flashobject").style.visibility = "visible"',5000);	}	else if(browser == "Opera" && OS == "Mac")	{		document.getElementById("flashobject").style.visibility = "hidden"	}	else if(browser == "Camino")	{		document.getElementById("flashobject").style.visibility = "hidden"	}}function HideMenu(myNode){				var myParent = myNode;	var myNumKids = myParent.childNodes.length;		if(browser == "Internet Explorer")	{		for(var i=0;i<myNumKids;i++)		{			if(myParent.childNodes[i].nodeType == 1)			{				if(myParent.childNodes[i].className)				{					if(myParent.childNodes[i].className == 'menulist')					{						myParent.childNodes[i].style.display = 'none';						}				}			}				}	}	else if(browser == "Safari")	{		document.getElementById("flashobject").style.visibility = "visible";	}	else if(browser == "Opera" && OS == "Mac")	{		document.getElementById("flashobject").style.visibility = "visible"	}	else if(browser == "Camino")	{		document.getElementById("flashobject").style.visibility = "visible"	}	}
