function showhide( el ) {
	el = document.getElementById(el);
	if ( el ) el.style.display = ( el.style.display == "none" ) ? "block" : "none";
}
