if(typeof Brand == "undefined") Brand={};
if(typeof Brand.UserLogin_class == "undefined") Brand.UserLogin_class={};
Brand.UserLogin_class = function() {};
Object.extend(Brand.UserLogin_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Login: function(userName, pwd) {
		return this.invoke("Login", {"userName":userName, "pwd":pwd}, this.Login.getArguments().slice(2));
	},
	url: '/ajaxpro/Brand.UserLogin,Brand.ashx'
}));
Brand.UserLogin = new Brand.UserLogin_class();


