function check_form() {
if(document.Eingabeformular.Name.value.length < 3
||
document.Eingabeformular.EMail_Adresse.value.length < 3
||
document.Eingabeformular.Telefon.value.length < 3
||
document.Eingabeformular.Kommentar.value.length < 10
) 

{
document.getElementById("ausgabe_abfrage").innerHTML = "Bitte f&uuml;llen Sie die Pflichtfelder aus.";
return false;
}





else {return true;}


}
