function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('Please accept the Terms of Agreement to continue.');
    return false;
  } else
    return true;
}
