
<!--

function validateForm(theForm) {
 var name = theForm.username.value;
 var email = theForm.email.value;
 var email2 = theForm.email2.value;
 if (name == "") {
   alert("Please fill in your name.");
   theForm.username.focus();
   return false;
 }
 if (email == "") {
   alert("Please fill in your email address.");
   theForm.email.focus();
   return false;
 }
 
 if (email2 == "") {
   alert("Please fill in your email address.");
   theForm.email2.focus();
   return false;
 }
if (email2 != email){
          alert("Your confirm email " + theForm.email2.value +" doesn't match " + theForm.email.value);
      return false;
   }

if (!theForm.myCheckbox.checked)
{
 alert("Confirm you have read and agree with the Disclaimer, TOS, and Risk statements");
 return false;
}
}

//-->
