<!--// BEGIN JS FOR MENU//-->
if (document.getElementById){
	document.write('<style type="text/css">\n')
	document.write('.submenu{display: none;}\n')
	document.write('</style>\n')
}

function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("masterdiv").getElementsByTagName("span");
		if(el.style.display != "block"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu")
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}
<!--// END JS FOR MENU//-->

<!--// BEGIN JS FOR VIEWING IMAGE AT FULL RESOLUTION //-->
function OpenImage(imgname, imgheight, imgwidth){
	imgheight = imgheight + 20;
	imgwidth = imgwidth + 20;
	window.open("images/hi-res/" + imgname,null,"height=" + imgheight + ",width=" + imgwidth + ",status=no,toolbar=no,menubar=no,location=no");
}
<!--// END JS FOR VIEWING IMAGE AT FULL RESOLUTION //-->