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