<!--

function validatecomment(frm)
{

     if (!checkString(frm.yourname, "Name", false)){
     return false;}
     
     if (!checkString(frm.hometelephone, "Home Telephone", false)){
     return false;}

     if (!checkSelect(frm.how, "How did you hear about us")){
     return false;} 
     
     if (!checkString(frm.Compliments, "Compliments/comment", false)){
     return false;}     
            
     frm.submit();
    
   }

//-->
