<!--

function validate(frm)
{

     if (!checkString(frm.YourName, "Name", false)){
     return false;}
     
     if (!checkString(frm.address2, "Address", false)){
     return false;}  
     
     if (!checkString(frm.telephone2, "Telephone", false)){
     return false;}
            
     frm.submit();
    
   }

//-->
