/* Eingabeüberprüfung für die Suchfunktion */ function CheckInput() { theForm = document.search; var error = false; var errorText = ''; // Start Forminhaltskontrolle if ((theForm.term.value) == "" ||(theForm.term.value.length<3)) { errorText = 'minimaal 3 seinen!'; error = true; theForm.term.focus(); } // Ende Forminhaltskontrolle if (error) { alert(errorText); } return (!error); }