
      function show(ID) {
       if(document.getElementById)
         document.getElementById(ID).style.display = "block";
         //document.getElementById(ID).style.visibility = "visible";
         //document.getElementById(ID).style.left = window.event.clientX+"px";
         //document.getElementById(ID).style.top = window.event.clientY+"px";
      }
      function hide(ID) {
       if(document.getElementById)
         document.getElementById(ID).style.display = "none";
         //document.getElementById(ID).style.visibility = "hidden";
      }
      function toggle(ID) {
       //if(document.getElementById(ID).style.visibility == "hidden")
       if(document.getElementById(ID).style.display != "block")
        {show(ID);}else{hide(ID);}
      }
    
    
function setfocus() {
//document.form1.firmenname.focus();
}

//document.getElementById("zaehler").innerHTML="Keine Romane bitte. Kurz und präzise";

//<h1 id="Test"
// onmouseover="this.innerHTML = 'Sehen Sie?'"
// onmouseout="this.innerHTML = 'Ich bin dynamisch'">Ich bin dynamisch</h1>
//</body></html>

//function ResetCheck () {
//  var chk = window.confirm("Wollen Sie alle Eingaben loeschen?");
 // return (chk);
//}

