function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('You must agree to the terms of the EULA to complete your purchase. Please check the box to continue.');
    return false;
  } else
    return true;
}
