// JavaScript Order Form validation
function Form_Validator(theForm)
{
	
 	if (theForm.Name.value == "")
  {
    alert("Please enter your Name");
    theForm.Name.focus();
    return (false);
  }
	if (theForm.Company.value == "")
  {
    alert("Please enter your Company Name");
    theForm.Company.focus();
    return (false);
  }
	if (theForm.Email.value.length == 0) {
    alert("Please fill in the E-mail address");
    theForm.Email.focus();
    return false;
  }
  re = /^[a-zA-Z0-9_.\-]+@[a-zA-Z0-9.\-]+[a-zA-Z0-9\-]\.[a-zA-Z][a-zA-Z]+$/;
  if (!re.test(theForm.Email.value)) {
    alert("Please fill in a correct E-mail address");
    theForm.Email.focus();
    return false;
  }	
	
	if (theForm.Message.value == "")
  {
    alert("Please enter your Request ");
    theForm.Message.focus();
    return (false);
  }
  

   return (true);
}
