function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('Do You Accept the Terms of the Purchase Agreement? Please Check the Box to Continue.');
    return false;
  } else
    return true;
}