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 == "") {
		alert("Please enter the Company/Organisation name")
		document.frmcontact.othercompany.focus() 
		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();
}
