Master_class = function() {};
Object.extend(Master_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetPopInfo: function(pageid, id) {
		return this.invoke("GetPopInfo", {"pageid":pageid, "id":id}, this.GetPopInfo.getArguments().slice(2));
	},
	ChangePopType: function(pageid, inpid, popid) {
		return this.invoke("ChangePopType", {"pageid":pageid, "inpid":inpid, "popid":popid}, this.ChangePopType.getArguments().slice(3));
	},
	Translate: function(txt) {
		return this.invoke("Translate", {"txt":txt}, this.Translate.getArguments().slice(1));
	},
	TranslateArr: function(txt) {
		return this.invoke("TranslateArr", {"txt":txt}, this.TranslateArr.getArguments().slice(1));
	},
	Login: function(uname, pwd) {
		return this.invoke("Login", {"uname":uname, "pwd":pwd}, this.Login.getArguments().slice(2));
	},
	Logout: function() {
		return this.invoke("Logout", {}, this.Logout.getArguments().slice(0));
	},
	RequestPassword: function(uname, email) {
		return this.invoke("RequestPassword", {"uname":uname, "email":email}, this.RequestPassword.getArguments().slice(2));
	},
	url: '/ajaxpro/Master,App_Web_master.cs.3c81b270.498bqfwz.ashx'
}));
Master = new Master_class();


