<!-- Begin

function Validator(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter your name");
    theForm.name.focus();
    return (false);
  }

  if (theForm.name.value.length < 4)
  {
    alert("Please provide your real name");
    theForm.name.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter your email address");
    theForm.email.focus();
    return (false);
  }

  if (theForm.message.value == "")
  {
    alert("You have not included a message");
    theForm.message.focus();
    return (false);
  }

  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(theForm.email.value)){
	alert("Thank you for your message!  \nWe will be in touch shortly.  ");
	return (true);
  }
  
  alert("Please enter a valid email address so ARC can get back to you.");
  theForm.email.focus();
  return (false);

}

// End -->