<!--
function isValid(){var msg="";if(kontaktFormular.eMail.value.indexOf("@")<1||kontaktFormular.eMail.value.indexOf(".")<1){msg+="- Die E-Mail-Adresse ist syntaktisch nicht korrekt.\n";}
if(kontaktFormular.Name.value==""){msg+="- Leeres Feld: Name:\n";}
if(kontaktFormular.nachricht.value==""){msg+="- Leeres Feld: Nachricht:\n";}
if(msg==""){return true;}
alert(msg);return false;}
-->
