function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('Before you continue, you must agree to the Terms of Service.');
    return false;
  } else
    return true;
}