if(typeof shop == "undefined") shop={};
shop_class = function() {};
Object.extend(shop_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Login: function(UserName, PassWord, type, CodeStr) {
		return this.invoke("Login", {"UserName":UserName, "PassWord":PassWord, "type":type, "CodeStr":CodeStr}, this.Login.getArguments().slice(4));
	},
	ReturnLoginUsername: function(username, pass) {
		return this.invoke("ReturnLoginUsername", {"username":username, "pass":pass}, this.ReturnLoginUsername.getArguments().slice(2));
	},
	checklogin: function() {
		return this.invoke("checklogin", {}, this.checklogin.getArguments().slice(0));
	},
	SingOut: function() {
		return this.invoke("SingOut", {}, this.SingOut.getArguments().slice(0));
	},
	url: '/ajaxpro/Hnnypp.UI.shopAjax,hnnypp.UI.ashx'
}));
shop = new shop_class();


