function zobraz(obj) { 
 if (!document.layers) 
 {   
  var txt = document.getElementById(obj); 
	 if (txt.style.display == "none") { txt.style.display = "inline"; } else {txt.style.display = "none";}	
 } 
} 
