if(typeof GaBook == "undefined") GaBook={};
GaBook_class = function() {};
Object.extend(GaBook_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	addMsg: function(author, title, content, IPAddress) {
		return this.invoke("addMsg", {"author":author, "title":title, "content":content, "IPAddress":IPAddress}, this.addMsg.getArguments().slice(4));
	},
	msgList: function(currentPage) {
		return this.invoke("msgList", {"currentPage":currentPage}, this.msgList.getArguments().slice(1));
	},
	userLogin: function(pass) {
		return this.invoke("userLogin", {"pass":pass}, this.userLogin.getArguments().slice(1));
	},
	showReply: function(tid) {
		return this.invoke("showReply", {"tid":tid}, this.showReply.getArguments().slice(1));
	},
	showReplyBar: function(tid) {
		return this.invoke("showReplyBar", {"tid":tid}, this.showReplyBar.getArguments().slice(1));
	},
	addReply: function(tid, content) {
		return this.invoke("addReply", {"tid":tid, "content":content}, this.addReply.getArguments().slice(2));
	},
	delTopic: function(tid) {
		return this.invoke("delTopic", {"tid":tid}, this.delTopic.getArguments().slice(1));
	},
	logOut: function() {
		return this.invoke("logOut", {}, this.logOut.getArguments().slice(0));
	},
	url: '/ajaxpro/_Default,App_Web_pgwkeeyc.ashx'
}));
GaBook = new GaBook_class();

