addNamespace("Gb");
Gb_class = Class.create();
Gb_class.prototype = (new AjaxPro.Request()).extend({
	Insert: function(type, msg, callback) {
		return this.invoke("Insert", {"type":type, "msg":msg}, callback);
	},
	Get: function(mb, start, max, type, callback) {
		return this.invoke("Get", {"mb":mb, "start":start, "max":max, "type":type}, callback);
	},
	info: function(xid, type, callback) {
		return this.invoke("info", {"xid":xid, "type":type}, callback);
	},
	pageIndex: function(mb, psize, type, ps, callback) {
		return this.invoke("pageIndex", {"mb":mb, "psize":psize, "type":type, "ps":ps}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Gb,App_Code.ashx";
	}
})
Gb = new Gb_class();

