	function confirmReset() {
		if (confirm("Please confirm Form Reset?")) {
			thisForm = document.contactForm;
			thisForm.name.value = "";
			thisForm.emailAddress.value = "";
			thisForm.telephone.value = "";
			thisForm.enquiry.value = "";
		}
		return false;
	}