function show(what)
{
	showWhat = document.getElementById(what);
	showWhat.className = "";	
}

function hide(what)
{
	showWhat = document.getElementById(what);
	showWhat.className = "outofsite";	
}

