function checkReset() {
	return window.confirm("Are you sure you want to clear the form?");
};

function confirmSubmit() {
  	if (document.form1.elements[2].value == "") {
   		window.alert("Please enter your thoughts about us before the form can be submitted.");
   		return false;
    	};

	return window.confirm("Are you sure you want to submit?");
};
