// everything below helps toggle the hidden submenusfunction toggle( targetId ){  if (document.getElementById){  		//alert("toggle");  		target = document.getElementById( targetId );  			if (target.style.display == "none"){  				target.style.display = "";  			} else {  				target.style.display = "none";  			}  	}}// togglehide('showwork')function togglehide( targetId ){  if (document.getElementById){  		//alert("togglehide");    		target = document.getElementById( targetId );		target.style.display = "none";  }}// everything below pops open a new windowfunction openWindow(width,height,name) {x = (640 - width)/2, y = (480 - height)/2;if (screen) {y = (screen.availHeight - height)/2;x = (screen.availWidth - width)/2;}if (screen.availWidth > 1800) {x = ((screen.availWidth/2) - width)/2;}window.open(name,'hashbrown','status='+1+',menubar='+0+',scrollbars='+0+',width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x);}