AjaxPlugins.IvsDownload = {
    handleResponse: function(pluginOutput) {

        // -------------------get_kanton_info---------------------------
        if(typeof(pluginOutput.variables.get_gemeinde_by_kanton) != 'undefined'){
            populateSelect('ivs_down_gemeinde',pluginOutput.variables.get_gemeinde_by_kanton);  
        }
     
    }
};



AjaxPlugins.IvsDownload.Actions = {};
// ------------rencenter_on_parcel----
AjaxPlugins.IvsDownload.Actions.get_gemeinde_by_kanton = {


    buildPostRequest: function(argObject) {
        return  AjaxHandler.buildPostRequest()+'&action=get_gemeinde_by_kanton&'+ivs_down_params+'&posted=1';
    }, 

    buildGetRequest: function(argObject) {
        return '';
    },
    onBeforeAjaxCall: function(argObject) {


    },
    onAfterAjaxCall: function(argObject) {
        
    }

}



