function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('Please read and agree to the Terms and Conditions first and check the box to continue.');
    return false;
  } else
    return true;
}