<!--

function validatevf(frm)
{
	 if (frm.yourname){
         if (!checkString(frm.yourname, "Your Name", false)){
         return false;}
     }
     
	 if (frm.address){
         if (!checkString(frm.address, "Address", false)){
         return false;}
     }     


	 if (frm.city){
         if (!checkString(frm.city, "City", false)){
         return false;}
     }     
     
   
	 if (frm.zip){
         if (!checkString(frm.zip, "Zip", false)){
         return false;}
     }

	 if (frm.phone){
         if (!checkString(frm.phone, "Phone", false)){
         return false;}
     }
     
     if (frm.email){
         if (!checkEmail(frm.email, "Email Address", false)){
         return false;} 
     }
     
     if (frm.email2){
         if (!checkEmail(frm.email2, "Confirm Email Address", false)){
         return false;}
     }  
     
     if (frm.email2){
         if (!checkIdenticalValues(frm.email, "Email Address", frm.email2, "Confirm Email Address", false)){
         return false;} 
     }   
     
	 if (frm.usertype){
         if (!checkSelect(frm.usertype, "Who are you")){
         return false;}
     }     
     
	 if (frm.enquiry){
         if (!checkString(frm.enquiry, "What type of visa are you enquiring about / want to file", false)){
         return false;}
     }     
     
	frm.submit();
    
   }

//-->