function Form1_Validator(theForm)
{

    if (theForm.comments.value == "")
  {
    alert("Please enter a value for the \"Ask Lori\" field.");
    theForm.comments.focus();
    return (false);
  }
  
  if (theForm.name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.name.focus();
    return (false);
  }


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




 

  return (true);
}