	<!-- GO TO -->
	function GoTo(strLocation) {
		if (strLocation.indexOf("http") == -1) {
			window.location = strLocation;
		} else {
			window.open(strLocation);
		}
	}
	<!-- SHOW DIV -->
	function showDiv(DivId, shown) {  
		var displaystyle = "none";
		var claseIE = "submenu";
		var claseIE800 = "submenu";
		var claseIE1280 = "submenu";
		var clase800 = "submenu";
		var clase1280 = "submenu";
		
		if (shown) {
			displaystyle = "block";
		}
		if (document.getElementById) { // IE5 & NS6
			document.getElementById(DivId).style.display = displaystyle;
			if (window.navigator.appName == "Microsoft Internet Explorer"){//IE
				if (window.screen.width == "1024" && screen.height == "768")
					document.getElementById(DivId).className = claseIE;
				else
				 	if (window.screen.width == "800" && screen.height == "600")
						document.getElementById(DivId).className = claseIE800;
					else
						if (window.screen.width == "1280")
							document.getElementById(DivId).className = claseIE1280;
												
			} else // Mozilla, Firefox, Netscape
				if (window.screen.width == "800" && screen.height == "600")
					document.getElementById(DivId).className = clase800;
				else 
					if (window.screen.width == "1280")
						document.getElementById(DivId).className = clase1280;
		} else {
			if (document.all) { // IE
				document.all(DivId).style.display = displaystyle;
				if (window.navigator.appName == "Microsoft Internet Explorer"){
					document.getElementById(DivId).className = claseIE;
				}
			} else { // NS 4
				document.getElementById(DivId).style.display = displaystyle;
			}
		}
	}
	<!-- SHOW SUB MENU -->
	var currentMenu = "";
	function showSubMenu(divId){
	    //if (navigator.appName == "Microsoft Internet Explorer"){
		//    var el = document.getElementById('divId');
		//	if (el) {
		//		el.className = 'submenuIE';
		//	}
		//}
		if (divId) {
			mOver(divId + "_Head");
			// onmouseout is not reliable on NS7 -- fix
			if (currentMenu) {
				showDiv(currentMenu, false);
			}
			showDiv(divId, true);
			currentMenu = divId;
		} else {
			highlight();
			showDiv(currentMenu, false);
			mOver();
		}
	}
	
	// General Mouseovers
	var strLastOver = "";
	<!-- MOUSE OVER -->
	function mOver(strImgName) {
		if(strImgName) {
			// onmouseout not reliable on NS7
			if (strLastOver) {
				mOver();
			}
			strLastOver = strImgName;
			document.images[strImgName].src = eval(strImgName + "_on.src");
		} else {
			document.images[strLastOver].src = eval(strLastOver + "_off.src");
		}
	}
	<!-- HIGHLIGHT -->
	oLastLink = null;
	function highlight(aLinkObj) {
		if (aLinkObj) {
			if (oLastLink && oLastLink != aLinkObj) {
				oLastLink.parentNode.className = "submenuitem";
			}			
			oLastLink = aLinkObj;
			aLinkObj.parentNode.className = "submenuitemhover";
		} else {
			if (oLastLink) {
				oLastLink.parentNode.className = "submenuitem";
			}
		}
	}
	

	