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


  if (theForm.email.value == "")
  {
    alert("Please enter your \"Email\" address.");
    theForm.email.focus();
    return (false);
  }

  
  return (true);
}
 