// erzeugt Suchformular!
function makesuchform() {
	suchform="<form name=\"suchen\" "+ 
	"onsubmit=\'return suche()\'>"+
	"<input type=\"text\" name=\"eingabe\"" +
	"value=\"mot-clé et enter!\" size=\"20\" "+
	"onMouseUp=\"javascript:this.value=\'\'; " +
	"return true\"><\/form>\n";
	document.write(suchform);
}


function suche() {
// POPUP-FENSTER ERZEUGEN
win=window.open("result.html","suchwin",
"width=460,height=300,left=150,top=200,"+
"scrollbars=no,resizable=yes");
win.focus();
// nächste Zeile schliesst Suchfenster automatisch
win.setTimeout("window.close()",60000); // evtl. loeschen
return false;
}

