
function Enquiry_form_check(form)  {
	if (form.ContactName.value == "") {
		alert("Please enter your Contact Name");
		form.ContactName.focus();
		return false;
	}
	if (form.Telephone.value == "") {
		alert("Please enter your Telephone Number");
		form.Telephone.focus();
		return false;
	}
	alert("Thanks for entering your details.");
}
