<!-- 

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.Business_Type.value == "")
        {
          alert("Please enter your type of business");
          theForm.Business_Type.focus();
          return (false);
        }
        

        
        return (true);
}
//-->
       
