 <!--
function continue_button(theForm) {
    if (ValidateForm(theForm)) {
        //theForm.submit.blur();
        window.onunload='';
      //  theForm.submit.disabled=true;
        return true;
     } else {
        return false;
     }
} 

function continue_button_no_validate(theForm) {
    window.onunload='';
    return true;
} 
//-->

