 <!--
 function FrontPage_Form1_Validator(theForm)
 {
 if (theForm.First_name.value == "")
 {
 alert('Pleas insert your First name.');
 theForm.First_name.focus();
 return (false);
 }
if (theForm.Name.value == "")
 {
 alert('Pleas insert your last name.');
 theForm.Name.focus();
 return (false);
 } 
 if (theForm.Telephone.value == "")
 {
 alert('Please insert your telephon number ein.');
 theForm.Telephone.focus();
 return (false);
 }
 if (theForm.eMail.value == "")
 {
 alert('Please insert your email address');
 theForm.eMail.focus();
 return (false);
 }
 if(theForm.eMail.value.indexOf('@') == -1)
 {
 alert('no correct email address!');
 theForm.eMail.focus();
 return (false);
 }
 return (true);
 }
 //-->
