if(typeof Chat == "undefined") Chat={};
Chat_class = function() {};
Object.extend(Chat_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	BufferText: function(room) {
		return this.invoke("BufferText", {"room":room}, this.BufferText.getArguments().slice(1));
	},
	Kill: function(room, user, password) {
		return this.invoke("Kill", {"room":room, "user":user, "password":password}, this.Kill.getArguments().slice(3));
	},
	Login: function(room, user) {
		return this.invoke("Login", {"room":room, "user":user}, this.Login.getArguments().slice(2));
	},
	PostText: function(room, user, text) {
		return this.invoke("PostText", {"room":room, "user":user, "text":text}, this.PostText.getArguments().slice(3));
	},
	UserList: function(room) {
		return this.invoke("UserList", {"room":room}, this.UserList.getArguments().slice(1));
	},
	Ping: function(room, user) {
		return this.invoke("Ping", {"room":room, "user":user}, this.Ping.getArguments().slice(2));
	},
	url: '/ajaxpro/Chat_Default,App_Web_n3jefycj.ashx'
}));
Chat = new Chat_class();

