// JavaScript Document
function Form_empf_Validator(theForm)
{							
	if (theForm.Name.value == ""){
     alert("Bitte geben Sie Ihren \"Namen\" ein.");
     theForm.Name.focus();
     return (false);
   }
   if (theForm.email1.value == ""){
     alert("Bitte geben Sie die \"E-mailadresse des Empfängers\" ein.");
     theForm.email1.focus();
     return (false);
   }
	if(theForm.email1.value.indexOf('@') == -1) {
   alert("Geben Sie bitte eine gültige E-Mailadresse ein.");
   theForm.email1.focus();
   return false;
  }

  return (true);
}