
<!--

 function validate_checkbox() {
 var checkbox = document.getElementById('checkbox');
 if (!checkbox.checked) {
 alert("Confirm you have read and agree with the Disclaimer, TOS, and Risk statements");
 return false;
 } else {
 return true;
 }
 }
 //-->
