function Form_Validator(theForm) {
	if (theForm.email.value == "") {
		alert("Please enter a value for the \"E-Mail\" field.");
		theForm.email.focus();
		return (false);
	}
	return (true);
}
