function showToggle(what){
        thestyle=document.getElementById(what).style;
        if((thestyle.display == "none") || (thestyle.display == "") || (thestyle.display == " ")){
                
        	thestyle.display = "block";
	}
	else{
                thestyle.display = "none";
        }
        return false;
}