<!--
function check_enquiry() {
	var txt1 = document.getElementById("txtFullName");
	if (txt1.value == "") {
		alert("Invalid Name.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtEmailAddress");
	if (txt1.value == "") {
		alert("Invalid Email address.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtHomePhone1");
	if (txt1.value == "" || document.getElementById("txtHomePhone2").value=="") {
		alert("Invalid Phone.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtAddress1");
	if (txt1.value == "") {
		alert("Invalid Address.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtCity");
	if (txt1.value == "") {
		alert("Invalid City.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtPostcode");
	if (txt1.value == "") {
		alert("Invalid post code.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtSubject");
	if (txt1.value == "") {
		alert("Invalid Subject.");
		txt1.focus();
		return false;
	}

	var txt1 = document.getElementById("txtMessage");
	if (txt1.value == "") {
		alert("Invalid Message.");
		txt1.focus();
		return false;
	}

	return true;
}
-->