<!--
function feld() {
if((document.form1.name.value=="") | (document.form1.nachname.value=="") | (document.form1.strasse.value=="") | (document.form1.wohnort.value=="") | (document.form1.land.value=="") | (document.form1.inhalt.value=="") | (document.form1.email.value==""))
{
alert ("Fields marked with * are required fields");
document.form1.name.focus();
return false;
}
}
// -->