// Rev. 09/07/2003

function Toggle(item) {
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")  
   if (visible) {
     obj.style.display="none";
     innerhtml="<img src='kosticka.gif' border='0'>";
   } else {
      obj.style.display="block";
      innerhtml="<img src='kosticka.gif' border='0'>" + item;
   }
}

function clear_box(hodnota){
		document.forms[0].email.value=hodnota;
}

