function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function uebergabe(action,id,weiter,tempid) {
    document.Eingabe.ID.value = id;
	document.Eingabe.tempID.value = tempid;
	document.Eingabe.weiter.value = weiter;
	document.Eingabe.action = action;
	document.Eingabe.submit();
}

function suchchecken() {
   //alert (document.Suche.suche.value.length);
   if (document.Suche.suche.value.length<3) {
      alert("Bitte geben Sie min. 3 Zeichen an!");
	  return false;
   } else {
      return true;
   }
   
}

function loescheForm() {
  if (document.Suche.suche.value=="Volltextsuche") {
     document.Suche.suche.value="";
  }
}