function makesuchform() {
suchform="<form name=\"suchen\" "+ 
"onsubmit=\'return suche()\'>"+
"<input type=\"text\" name=\"eingabe\"" +
"value=\"Suchbegriff eingeben\" size=\"22\" "+
"onClick=\"javascript:this.value=\'\'; " +
"return true\"><\/form>\n";
document.write(suchform);
}


function suche() {
win=window.open("result.html","suchwin",
"width=350,height=300,left=200,top=250,"+
"scrollbars=no,resizable=yes");
win.focus();
win.setTimeout("window.close()",40000);
return false;
}

