function validate(theForm) {
if (theForm.phone.value=="" && theForm.email.value=="") {
alert('Please remember that we have no way of contacting you unless you enter an e-mail address or phone number. Thank you!');
theForm.phone.focus();
return false;
}
return true; // allow submission
}
