 <!--
 function FrontPage_Form1_Validator(theForm)
 {
 if (theForm.Nombre.value == "")
 {
 alert('Pleas insert your name.');
 theForm.Nombre.focus();
 return (false);
 }
if (theForm.Apellido.value == "")
 {
 alert('Pleas insert your last name.');
 theForm.Apellido.focus();
 return (false);
 } 
 if (theForm.telefono.value == "")
 {
 alert('Please insert your telephon number" ein.');
 theForm.telefono.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);
 }
 //-->
