function toggle(zap) {
 if (document.getElementById) {
	var doit = document.getElementById(zap).style;
	if (doit.display == "block") {
	 doit.display = "none";
	 } else {
	 doit.display = "block";
	 }
	 return false;
	 } else {
	 return true;
	}
   }