 <!-- QuorumClean.Com Validate START -->
<!--
function Form2_Validator(theForm)
{

  if (theForm.Qname.value == "")
  {
    alert("Please enter your \"Name\".");
    theForm.Qname.focus();
    return (false);
  }

  if (theForm.Qphone.value == "")
  {
    alert("Please enter your \"Phone Number\".");
    theForm.Qphone.focus();
    return (false);
}
var checkOK = "0123456789-";
var checkStr = theForm.Qphone.value;
var allValid = true;
for (i = 0;  i < checkStr.length;  i++)
{
ch = checkStr.charAt(i);
for (j = 0;  j < checkOK.length;  j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
}
if (!allValid)
{
alert("Please enter only digit characters in the \"Phone\" field.");
theForm.Qphone.focus();
return (false);
}

  if (theForm.Qemail.value == "")
  {
    alert("Please enter your \"eMail\".");
    theForm.Qemail.focus();
    return (false);
  }

  if (theForm.Qaddress.value == "")
  {
    alert("Please enter your \"Address\".");
    theForm.Qaddress.focus();
    return (false);
  }
 
   if (theForm.Qcity.value == "")
  {
    alert("Please enter your \"City\".");
    theForm.Qcity.focus();
    return (false);
  }

   if (theForm.Qzip.value == "")
  {
    alert("Please enter your \"Zip\".");
    theForm.Qzip.focus();
    return (false);
  }

 
  return (true);
}

//-->
