// JavaScript Document
function Validate(theForm) {
		
if (theForm.anrede.value == "" ) {
alert("Bitte alle Felder ausfüllen: Anrede!");
theForm.anrede.focus();
return (false);
}
if (theForm.vorname.value == "" ) {
alert("Bitte alle Felder ausfüllen: Vorname!");
theForm.vorname.focus();
return (false);
}
if (theForm.nachname.value == "" ) {
alert("Bitte alle Felder ausfüllen: Nachname!");
theForm.nachname.focus();
return (false);
}
if (theForm.ruckrufnummer.value == "" ) {
alert("Bitte alle Felder ausfüllen: Rückrufnummer!");
theForm.ruckrufnummer.focus();
return (false);
}
if (theForm.email.value == "" ) {
alert("Bitte alle Felder ausfüllen: E-Mail!");
theForm.email.focus();
return (false);
}

}