<!--

// Start hiding JavaScript code from old browsers.


// Pulldown menu validator:
var submitted = false;

function FormValidator(theForm) {
	if (theForm.Name.value == "") {
		alert("Please enter your name.");
		theForm.Name.focus();
		return (false);
	}
	
	if (theForm.Email.value == "") {
	    alert("Please your e-mail address.");
	    theForm.Email.focus();
	    return (false);
	}
	
	return window.confirm('Have you checked for errors?\nOnce you click this button, your information will be sent.\nYou only need to click the send button a single time.\n\nContinue?');
}
//-->
