function check(theForm)
{

         if (theForm.Name.value == "")
  {
    alert("Please enter your Name.");
    theForm.Name.focus();
    return (false);
  }
  
         if (theForm.Name.value == "name...")
  {
    alert("Please enter your Name.");
    theForm.Name.focus();
    return (false);
  }  
  
           if (theForm.Surname.value == "")
  {
    alert("Please enter your Surname.");
    theForm.Surname.focus();
    return (false);
  }
  
           if (theForm.Surname.value == "surname...")
  {
    alert("Please enter your Surname.");
    theForm.Surname.focus();
    return (false);
  }  
  

if (theForm.Email.value == "")
  {
     alert("Please enter a value for the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  
  if (theForm.Email.value == "email...")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  } 

else

return true;
}
