function regCheck (theForm) {

if (theForm.license.checked == false) {
     alert('You must indicate that you have read and agree to the terms of the License Agreement by clicking on the checkbox at the bottom of the page and then clicking on the "I Accept" button.');
        return false;
}
return true;
}
