if(typeof Account == "undefined") Account={};
Account_class = function() {};
Object.extend(Account_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Login: function(email, password) {
		return this.invoke("Login", {"email":email, "password":password}, this.Login.getArguments().slice(2));
	},
	GetCustomerName: function() {
		return this.invoke("GetCustomerName", {}, this.GetCustomerName.getArguments().slice(0));
	},
	url: '/ajaxpro/Account,App_Code.0dtvxlyj.ashx'
}));
Account = new Account_class();

