function ValPhoneEmail() {
	if (document.form.email.value == "" && document.form.phone.value == "") {
	  alert("A phone number or email address is required, so we are able to contact you with the information you're requesting.\n\nPlease enter a valid e-mail address or a phone number with area code and submit the form again.");
	  return false;
	}
	return true;
}