var hideObject;var currentMenu;function popup(url, name, width, height, x, y) {	settings="titlebar=no, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, left="+x+", top="+y+", screenX="+x+", screenY="+y+", width="+width+", height="+height;		NewWindow=window.open(url,name,settings);}function showObject(id) {	if (currentMenu != null)	{		currentMenuObject = document.getElementById(currentMenu);		clearTimeout(currentMenuObject.timer);		hideObject(currentMenu);	}   toShow = document.getElementById(id);   currentMenu = id;   toShow.style.visibility = "visible";   clearTimeout(toShow.timer);}function hideObject(id) {   document.getElementById(id).style.visibility = "hidden";}function hideObjectDelayed(id, delay) {   toHide = document.getElementById(id);   hideFunction = "hideObject('" + id + "')";   toHide.timer = setTimeout(hideFunction, delay);}function check(id){	 document.getElementById(id).checked = true ;}function printpage() {	window.print();  }function roll_on(rollImage){	rollImage.src = "images/" + rollImage.getAttribute('id') + "_on.gif";}function roll_off(rollImage){	rollImage.src = "images/" + rollImage.getAttribute('id') + ".gif";}function roll_on2(rollImage){	rollImage.src = "images/" + rollImage.getAttribute('id') + "_on.jpg";}function roll_off2(rollImage){	rollImage.src = "images/" + rollImage.getAttribute('id') + ".jpg";}function roll(id,rollImage) {moof = document.getElementById(id);moof.setAttribute("src", rollImage);}function changeBackground(color) {	 this.style.backgroundColor=color;}