function Form1_Validator(theForm)
  {
	  if(theForm.name.value == "") {
      alert("Name is a Required Field!");
      theForm.name.focus();
      return false;
  }
   if(theForm.message.value == "") {
      alert("Message is a Required Field");
      theForm.message.focus();
      return false;
  }
	re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
	if(!re.test(theForm.email.value)) {
	alert("Please Enter a Valid Email Address!");
	theForm.email.focus();
	return false;
  }


}
