<!-- 
	function ieTest(){
		if (document.all){
				thisMenu = eval("document.all.more.style");
				if(navigator.appName == "Microsoft Internet Explorer"){
				thisMenu.display = "none";
			}
		}
	}
	function toggleMenu(currMenu){
		if (document.all){
			thisMenu = eval("document.all." + currMenu + ".style");
							
			if (thisMenu.display == "block"){
				thisMenu.display = "none";
			}
			else{
				thisMenu.display = "block";
				go.style.visibility = "hidden";
			}
						
			return false;
		}
		else {
			return true;
		}
	}
// -->
