function validator(theForm) {
	if (theForm.Name.value == "") {
		alert("Please enter a value for the \"Name\" field.");
		theForm.Name.focus();
		return (false);
	}
	if (theForm.Email.value == "") {
		alert("Please enter a value for the \"Email\" field.");
		theForm.Email.focus();
		return (false);
	}
	return (true);
}
