<!--

function CheckMailError(message) {
  alert(message);
  return false;
}

function CheckMailForm(form) {
  var today = new Date();

  if(form.mail_to.value == "") {
    form.mail_to.focus();
    return CheckMailError("This page has been reached in error.");
  }//end if

  if(form.mail_from.value == "") {
    form.mail_from.focus();
    return CheckMailError("Please enter your email address..");
  }//end if

  if(form.mail_message.value == "") {
    form.mail_message.focus();
    return CheckMailError("Please enter your message.");
  }//end if

  if(form.mail_day.value != today.getDay()) {
    form.mail_day.focus();
    return CheckMailError("Help keep us free of spam,\n please select the current day of the week.");
  }//end if

}

-->