// JavaScript Document
function Validate(theForm) {
		
if (theForm.ihrname.value == "" ) {
alert("Bitte alle Felder ausfüllen: Ihr name!");
theForm.ihrname.focus();
return (false);
}
if (theForm.ihreemail.value == "" ) {
alert("Bitte alle Felder ausfüllen: Ihre email!");
theForm.ihreemail.focus();
return (false);
}
if (theForm.empfaengeremail.value == "" ) {
alert("Bitte alle Felder ausfüllen: Empfänger-email!");
theForm.empfaengeremail.focus();
return (false);
}

}