if(typeof MyLogin == "undefined") MyLogin={};
MyLogin_class = function() {};
Object.extend(MyLogin_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	LoginS: function(name, pwd) {
		return this.invoke("LoginS", {"name":name, "pwd":pwd}, this.LoginS.getArguments().slice(2));
	},
	SessionOut: function() {
		return this.invoke("SessionOut", {}, this.SessionOut.getArguments().slice(0));
	},
	url: '/ajaxpro/MyLogin,App_Web_oy-roa_z.ashx'
}));
MyLogin = new MyLogin_class();

