if(typeof news == "undefined") news={};
news_class = function() {};
Object.extend(news_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GoPage: function(page) {
		return this.invoke("GoPage", {"page":page}, this.GoPage.getArguments().slice(1));
	},
	AddComment: function(newsID, nickName, info, IP) {
		return this.invoke("AddComment", {"newsID":newsID, "nickName":nickName, "info":info, "IP":IP}, this.AddComment.getArguments().slice(4));
	},
	LoginOut: function() {
		return this.invoke("LoginOut", {}, this.LoginOut.getArguments().slice(0));
	},
	ShwoNews: function(newsID) {
		return this.invoke("ShwoNews", {"newsID":newsID}, this.ShwoNews.getArguments().slice(1));
	},
	url: '/ajaxpro/news,SilkroadWeb_deploy.ashx'
}));
news = new news_class();

