function Form_Validator(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Your Name\" field.");
    theForm.Name.focus();
    return (false);
  }
  
  if (theForm.Phone.value == "")
  {
    alert("Please enter a value for the \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }
  
  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"E-mail\" field.");
    theForm.Email.focus();
    return (false);
  }

  return (true);
}