function showornot(what) 
{
	thiselement = document.getElementById(what);
	if (thiselement.style.display=="none" || thiselement.style.display==""){thiselement.style.display="inline";thiselement.focus();} 
	else {thiselement.style.display="none";}
}