 function validate_subs(frm) {
  
	checkString(frm.name,"Name");
	checkString(frm.address,"Address");
	checkString(frm.town,"Town/City");
	checkString(frm.county,"County");
	
	
		
	if (frm.email.value.length > 4){
		checkEmail(frm.email,"Email",1);
	}
	
	return checkError();
}
   
function validate_tell(frm) {
	checkString(frm.name,"Name");
	checkString(frm.comments,"Comments");
	return checkError();
}

 function validate_moty(frm) {
	checkString(document.mailform.moty_name,"Name");
	checkString(document.mailform.moty_company,"Company");
	checkString(document.mailform.moty_position,"Position");
	checkString(document.mailform.moty_bps,"Brand");
	checkString(document.mailform.moty_reason,"Reason for Nomination");
	checkString(document.mailform.moty_more_detail,"More Detail");

	return checkError();
}
