<!-- 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.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)){
	return (true);
  }
  
  alert("Please enter a valid email address");
  theForm.email.focus();
  return (false);
}

// End -->