<!--
function Validator(theForm){
	if (theForm.ContactName.value==""){ 
		alert("Please enter your name"); 
		theForm.ContactName.focus(); 
		return (false); 
	}
	if (theForm.Telephone.value==""){ 
		alert("Please enter a contact telephone number"); 
		theForm.Telephone.focus(); 
		return (false); 
	}
	if (theForm.email.value.indexOf("@")<=0){
		alert("Please enter your CORRECT email address");
		theForm.email.focus();
		return (false);
	}
	if (theForm.Enquiry.value==""){ 
		alert("Please enter your enquiry details"); 
		theForm.Enquiry.focus(); 
		return (false); 
	}
}
// -->