<!-- 

function Form1_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.Address.value == "")
        {
          alert("Please enter your Address");
          theForm.Address.focus();
          return (false);
        }
        
 if (theForm.City.value == "")
        {
          alert("Please enter your City");
          theForm.City.focus();
          return (false);
        }
        
 if (theForm.ZIP.value == "")
        {
          alert("Please enter your ZIP Code");
          theForm.ZIP.focus();
          return (false);
        }
        
 if (theForm.State_Province.value == "")
        {
          alert("Please enter your State or Province");
          theForm.State_Province.focus();
          return (false);
        }
        
 if (theForm.Phone.value == "")
        {
          alert("Please enter your Phone Number");
          theForm.Phone.focus();
          return (false);
        }

if (theForm.email.value == "")
        {
          alert("Please enter Email Address");
          theForm.email.focus();
          return (false);
        }

        var Ap = (theForm.email.value);
        if (Ap.indexOf ('@',0) == -1){
                alert("Please enter correct Email Address");
                theForm.email.focus();
                return (false);
        }
       var Dp = (theForm.email.value);
        if (Dp.indexOf ('.',0) == -1){
                alert("Please enter correct Email Address");
                theForm.email.focus();
                return (false);
        }
        
 if (theForm.URL.value == "http://")
        {
          alert("Please enter Web Address URL");
          theForm.URL.focus();
          return (false);
        }
        
        var Dp = (theForm.URL.value);
        if (Dp.indexOf ('.',0) == -1){
                alert("Please enter correct Web Address URL");
                theForm.URL.focus();
                return (false);
        }
        
 if (theForm.Order_Plan.value == "Please Select Service")
        {
          alert("Please select a SEO Plan");
          theForm.Order_Plan.focus();
          return (false);
        }
        
        
 if (theForm.accept.value == "no")
        {
          alert("You must agree to the Terms and Conditions and select I AGREE to continue");
          theForm.accept.focus();
          return (false);
        }  
        
        return (true);
}
//-->
       
