function Validate() { 
	if(SelectValidate(document.frmcontact.title,"the Title")==false) return false;
	if(TextValidate(document.frmcontact.firstname,"the First name")==false) return false;
	if(TextValidate(document.frmcontact.surname,"the Surname")==false) return false;
	if((document.frmcontact.othercompany.value == "") && (document.frmcontact.company.value == 0)) {
		alert("Please enter the Company/Organisation name")
		document.frmcontact.othercompany.focus() 
		return false;	
	}
	if(TextValidate(document.frmcontact.business,"the Business activity")==false) return false;
	if((document.frmcontact.address1.value == "") && (document.frmcontact.address2.value == "")) {
		alert("Please enter the Address")
		document.frmcontact.address1.focus() 
		return false;	
	}	
	if(TextValidate(document.frmcontact.city,"the City")==false) return false;	
	if(TextValidate(document.frmcontact.county,"the County")==false) return false;	
	if(TextValidate(document.frmcontact.postcode,"the Postcode")==false) return false;	
	if(TextValidate(document.frmcontact.telephone,"the Telephone")==false) return false;					
	if(TextValidate(document.frmcontact.email,"the E-mail address")==false) return false;				
	if(EmailValidateCheck(document.frmcontact.email,"the E-mail address")==false) return false;
	document.frmcontact.action ='contact.php?action=contact';
	document.frmcontact.submit();
}