////
////    JavaScript specific to the survey form
////

function handle_survey()
    {
    document.the_form.REQUEST_METHOD.value="HANDLE_SURVEY";
    window.document.forms[0].submit();
    }

function update_response()
    {
    document.the_form.REQUEST_METHOD.value="UPDATE_RESPONSE";
    window.document.forms[0].submit();
    }

function delete_response()
    {
    document.the_form.REQUEST_METHOD.value="DELETE_RESPONSE";
    window.document.forms[0].submit();
    }

function radio_decline()
    {
    document.the_form.REQUEST_METHOD.value="RADIO_DECLINE";
    window.document.forms[0].submit();
    }

function switch_questions( name )
    {
    document.the_form.REQUEST_METHOD.value="SWITCH_SURVEY";
    document.the_form.RES_QSURVEY.value= name;
    window.document.forms[0].submit();
    }

