if(typeof Marry == "undefined") Marry={};
if(typeof Marry.Ajax == "undefined") Marry.Ajax={};
Marry.Ajax.UserLogin_class = function() {};
Object.extend(Marry.Ajax.UserLogin_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	login: function(username, userpwd, type) {
		return this.invoke("login", {"username":username, "userpwd":userpwd, "type":type}, this.login.getArguments().slice(3));
	},
	logout: function(i) {
		return this.invoke("logout", {"i":i}, this.logout.getArguments().slice(1));
	},
	getcookies: function(type) {
		return this.invoke("getcookies", {"type":type}, this.getcookies.getArguments().slice(1));
	},
	url: '/ajaxpro/Marry.Ajax.UserLogin,Ajax.ashx'
}));
Marry.Ajax.UserLogin = new Marry.Ajax.UserLogin_class();

