addNamespace("pureland.Ajax");
pureland.Ajax.FastOrder_class = Class.create();
Object.extend(pureland.Ajax.FastOrder_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	gamelist: function() {
		return this.invoke("gamelist", {}, this.gamelist.getArguments().slice(0));
	},
	serverlist: function(game) {
		return this.invoke("serverlist", {"game":game}, this.serverlist.getArguments().slice(1));
	},
	server_list: function(game, indexchar) {
		return this.invoke("server_list", {"game":game, "indexchar":indexchar}, this.server_list.getArguments().slice(2));
	},
	CreateItemList: function(Game, Server, ChangeMonkey) {
		return this.invoke("CreateItemList", {"Game":Game, "Server":Server, "ChangeMonkey":ChangeMonkey}, this.CreateItemList.getArguments().slice(3));
	},
	FastBuy: function(Game, Server, Unit1, Unit2, Price1, Price2, Character, Email, Phone) {
		return this.invoke("FastBuy", {"Game":Game, "Server":Server, "Unit1":Unit1, "Unit2":Unit2, "Price1":Price1, "Price2":Price2, "Character":Character, "Email":Email, "Phone":Phone}, this.FastBuy.getArguments().slice(9));
	},
	initialize: function() {
		this.url = '/ajaxpro/pureland.Ajax.FastOrder,pureland.ashx';
	}
}));
pureland.Ajax.FastOrder = new pureland.Ajax.FastOrder_class();


