function ValidateContact_Form(theForm)
{
var strFilter = /^[A-Za-zÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ]*$/;
var chkVal = theForm.FName.value;
if (!strFilter.test(chkVal))
{
   alert("Please Enter Your First Name.");
   theForm.FName.focus();
   return false;
}
if (theForm.FName.value == "")
{
   alert("Please Enter Your First Name.");
   theForm.FName.focus();
   return false;
}
var strFilter = /^[A-Za-zÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ]*$/;
var chkVal = theForm.LName.value;
if (!strFilter.test(chkVal))
{
   alert("Please Enter Your Last Name.");
   theForm.LName.focus();
   return false;
}
if (theForm.LName.value == "")
{
   alert("Please Enter Your Last Name.");
   theForm.LName.focus();
   return false;
}
if (theForm.Company.value == "")
{
   alert("Please Enter Your Company Name");
   theForm.Company.focus();
   return false;
}
var strValue = theForm.Email.value;
var strFilter = /^([0-9a-z]([-.\w]*[0-9a-z])*@(([0-9a-z])+([-\w]*[0-9a-z])*\.)+[a-z]{2,6})$/i;
if (!strFilter.test(strValue))
{
   alert("Please Enter A Valid Email Address");
   return false;
}
if (theForm.Email.value == "")
{
   alert("Please Enter A Valid Email Address");
   theForm.Email.focus();
   return false;
}
if (theForm.Summary.value == "")
{
   alert("Please Enter A Brief Summary Of Your Enquiry");
   theForm.Summary.focus();
   return false;
}
var strFilter = /^[-+]?\d*\.?\d*$/;
var chkVal = theForm.verify.value;
if (!strFilter.test(chkVal))
{
   alert("Incorrect. Please Complete Verify Calculation.");
   theForm.verify.focus();
   return false;
}
if (theForm.verify.value == "")
{
   alert("Incorrect. Please Complete Verify Calculation.");
   theForm.verify.focus();
   return false;
}
var strValue = theForm.verify.value;
if (strValue != "" && !(strValue == 4))
{
   alert("Incorrect. Please Complete Verify Calculation.");
   theForm.verify.focus();
   return false;
}
return true;
}
