if(typeof AjaxCommon == "undefined") AjaxCommon={};
AjaxCommon_class = function() {};
Object.extend(AjaxCommon_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetServerList: function(gameID) {
		return this.invoke("GetServerList", {"gameID":gameID}, this.GetServerList.getArguments().slice(1));
	},
	GetCharacterClassList: function(gameID) {
		return this.invoke("GetCharacterClassList", {"gameID":gameID}, this.GetCharacterClassList.getArguments().slice(1));
	},
	GetCharacterTalantList: function(classID) {
		return this.invoke("GetCharacterTalantList", {"classID":classID}, this.GetCharacterTalantList.getArguments().slice(1));
	},
	GetRaceList: function(gameID) {
		return this.invoke("GetRaceList", {"gameID":gameID}, this.GetRaceList.getArguments().slice(1));
	},
	CheckDiscountCode: function(oldPrice, gameMame, code) {
		return this.invoke("CheckDiscountCode", {"oldPrice":oldPrice, "gameMame":gameMame, "code":code}, this.CheckDiscountCode.getArguments().slice(3));
	},
	ChangeMoneyCode: function(moneyCode) {
		return this.invoke("ChangeMoneyCode", {"moneyCode":moneyCode}, this.ChangeMoneyCode.getArguments().slice(1));
	},
	url: '/ajaxpro/AjaxCommon,Web_deploy.ashx'
}));
AjaxCommon = new AjaxCommon_class();

