<!-- Begin

function 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);
  }

  if (theForm.Question.value == "")
  {
    alert("You have not entered a question");
    theForm.Question.focus();
    return (false);
  }

  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(theForm.Email.value)){
	return (true);
  }
  
  alert("Please enter a valid email address so we can get back to you.");
  theForm.Email.focus();
  return (false);

}

// End -->