addNamespace("index");
index_class = Class.create();
index_class.prototype = (new AjaxPro.Request()).extend({
	GameListChanged: function(Type_ID, callback) {
		return this.invoke("GameListChanged", {"Type_ID":Type_ID}, callback);
	},
	ServerListChanged: function(Type_ID, GameList_ID, callback) {
		return this.invoke("ServerListChanged", {"Type_ID":Type_ID, "GameList_ID":GameList_ID}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/index,App_Web_t9_shofi.ashx";
	}
})
index = new index_class();

