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

