// JavaScript Document
// PierreFX Designs
function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('Please acknowledge that you have read the disclaimer if you wold like to review past results and testimonials of attorney Richard Hornsby.');
    return false;
  } else
    return true;
}

function toggle(targetId) {
target = document.getElementById(targetId);
if (target.style.display == "none"){
target.style.display="";
} else {
target.style.display="none";
}
}
//-->
