if(typeof GlobalAjax == "undefined") GlobalAjax={};
GlobalAjax_class = function() {};
Object.extend(GlobalAjax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	LoadPage: function(page, SessionReq) {
		return this.invoke("LoadPage", {"page":page, "SessionReq":SessionReq}, this.LoadPage.getArguments().slice(2));
	},
	GetDropdown: function(eleID, sel, group) {
		return this.invoke("GetDropdown", {"eleID":eleID, "sel":sel, "group":group}, this.GetDropdown.getArguments().slice(3));
	},
	GetApplicationSetting: function(SettingKey) {
		return this.invoke("GetApplicationSetting", {"SettingKey":SettingKey}, this.GetApplicationSetting.getArguments().slice(1));
	},
	GetPickupOrders: function() {
		return this.invoke("GetPickupOrders", {}, this.GetPickupOrders.getArguments().slice(0));
	},
	SetApplicationSettings: function(AppKey, AppValue) {
		return this.invoke("SetApplicationSettings", {"AppKey":AppKey, "AppValue":AppValue}, this.SetApplicationSettings.getArguments().slice(2));
	},
	GetSurveyList: function() {
		return this.invoke("GetSurveyList", {}, this.GetSurveyList.getArguments().slice(0));
	},
	SaveSurvey: function(SurveyArray, QuesArray, IP, comment) {
		return this.invoke("SaveSurvey", {"SurveyArray":SurveyArray, "QuesArray":QuesArray, "IP":IP, "comment":comment}, this.SaveSurvey.getArguments().slice(4));
	},
	url: '/ajaxpro/GlobalAjax,App_Code.ashx'
}));
GlobalAjax = new GlobalAjax_class();

