// JavaScript Document
<!--
/*
Cool Table Menu
By Clarence Eldefors (http://www.freebox.com/cereweb) with modifications from javascriptkit.com
Visit http://javascriptkit.com for this and over 400+ other scripts
*/
function movein(which,html){
		//which.style.background='rgb(51,51,153)'
		//which.style.cursor='hand'
		//which.style.text-decoration='underline'
		if (document.getElementById)
		document.getElementById("boxdescription").innerHTML=html;
		else
		boxdescription.innerHTML=html;
}
function moveout(which){
		//which.style.background='#9999cc'
		if (document.getElementById)
		document.getElementById("boxdescription").innerHTML='&nbsp;';
		else
		boxdescription.innerHTML='&nbsp;';
}
//-->
function show_hide(id) {
		disp = document.getElementById(id).style.display;
		if(disp == "block")
		document.getElementById(id).style.display = "none";
		else
		document.getElementById(id).style.display = "block";
}


