	function confirmReset(thisForm) {
		if (confirm("Please confirm Form Reset?")) {
			thisForm.FirstName.value = "";
			thisForm.LastName.value = "";
			thisForm.EmailAddress.value = "";
			thisForm.Telephone.value = "";
			thisForm.Postal.value = "";
			thisForm.Delivery.value = "";
			thisForm.Required.value = "";
			thisForm.Details.value = "";
			thisForm.Found.value = "";
		}
		return false;
	}
