function validateAndSubmitForm() {
 var frm = document.forms[0];
 if (!frm.ckAgree.checked) 
  alert("To continue, you MUST check the box to\nacknowledge that you have read and agree\nto abide by the Terms and Conditions set\nout on this page");
 else 
  frm.submit();
}
