function chkInhalt() {
 if (document.search.suchtext.value == "Suchbegriff eingeben") {
 	alert("Bitte geben Sie einen Suchbegriff ein!");
     return false;
   }
 }
document.write("<form action=\"suche.php\" method=\"post\" id=\"isearch_form\" name=\"isearch_form\" onsubmit=\"return chkInhalt()\">");
document.write("<p><label for=\"suchfeld\"><span class=\"invis\"><strong>Suche: <\/strong><\/span><\/label><input type=\"text\" id=\"suchfeld\" name=\"s\" value=\"Suchbegriff eingeben\" onfocus=\"if(this.value==this.defaultValue) this.value='';\" onblur=\"if (this.value=='') this.value=this.defaultValue;\">");
document.write("&nbsp;<input type=\"submit\" value=\" Finden \" class=\"senden\"><\/p><\/form>");

