function SubmitForm(thisForm)
{

  if (thisForm.reqName.value == "")
  {
    alert("Please enter your name.");
        return (false);
  }
  
  
    if (thisForm.reqEmail.value == "")
  {
    alert("Please enter your email address. (We will NOT share it with anyone!)");
        return (false);
  }
  
  
    if (thisForm.reqMessage.value == "")
  {
    alert("Please enter your message.");
        return (false);
  }

}