function ValidateCall_Back_Request_Form(theForm)
{
if (theForm.nameInput.value == "")
{
   alert("Please Provide Your Name.");
   theForm.nameInput.focus();
   return false;
}
if (theForm.telInput.value == "")
{
   alert("Please Provide Your Telephone Number.");
   theForm.telInput.focus();
   return false;
}
var strValue = theForm.emailInput.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 Supply a Valid Email Address");
   return false;
}
if (theForm.emailInput.value == "")
{
   alert("Please Supply a Valid Email Address");
   theForm.emailInput.focus();
   return false;
}
return true;
}

