<!--

function validatecontact(frm)
{
     
     if (!checkString(frm.yourname, "Your First Name", false)){
     return false;}
     
     if (!checkString(frm.yourlastname, "Your Last Name", false)){
     return false;}                              
     
     if (!checkEmail(frm.youremail, "Your Email Address", false)){
     return false;}  
     
     if (!checkSelect(frm.department, "Department")){
     return false;}         
 
     if (!checkString(frm.message, "Enquiry", false)){
     return false;}
	 
	frm.submit();
    
   }

//-->