function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('Please Check the Box that you Agree to the Terms & Conditions to submit your Form.');
    return false;
  } else
    return true;
}// JavaScript Document