<!--

function validatecontact(frm)
{

     if (!checkString(frm.firstname, "Firstname", false)){
     return false;}  
     
     if (!checkTelephoneNumber(frm.telephone, "Telephone Number", false)){
     return false;}       
   
     if (!checkSelect(frm.nature, "Nature of Enquiry")){
     return false;}       
     
            
     frm.submit();
    
   }

//-->
