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