// JavaScript Document
// PierreFX Designs
function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('You must acknowledge that you have read the disclaimer before you will be allowed to review the past results of attorney Richard Hornsby.');
    return false;
  } else
    return true;
}