<!--  
function CancelAction(thisForm) {	 
  thisForm.action="/index.html";
  thisForm.submit();
  return(true);   	 
}   

function CheckBeforeSubmit(thisForm) {   
  regMsg = "Please complete all required fields.";
  pwd4Msg = "Your Password must be at least 4 characters in length.";
  pwdConfPwdMsg = "Your password does not match the confirm password.";

  with (thisForm) {
    if (Name.value == "") {
      alert(regMsg);
      return(false);
    }
    if (Email.value == "") {
      alert(regMsg);
      return(false);
    }
    if (Password.value == "") {
      alert(regMsg);
      return(false);
    }
    if (Password.value.length < 4) {	
      alert(pwd4Msg);
      return(false);
    }
    if (Confirm.value == "") {	
      alert(regMsg);
      return(false);
    }
    if (Confirm.value != Password.value) {
      alert(pwdConfPwdMsg);
      return(false);
    }
					
    submit();  
    return(true);
    } // end with(thisForm)
}            
//-->