/*---- e001_genJS.js ------- START ------- */

function checkTermsConditions(f){
  if (f.agree.checked == false ){
     alert('Please accept the terms and conditions.');
     return false;
  }else
     return true;
}

/*---- e001_genJS.js ------- FINISH ------ */