Blog_class = function() {};
Object.extend(Blog_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	UpdateBlog: function(WebBlogId, Title, Body) {
		return this.invoke("UpdateBlog", {"WebBlogId":WebBlogId, "Title":Title, "Body":Body}, this.UpdateBlog.getArguments().slice(3));
	},
	NewBlog: function(Title, Body) {
		return this.invoke("NewBlog", {"Title":Title, "Body":Body}, this.NewBlog.getArguments().slice(2));
	},
	url: '/ajaxpro/Blog,App_Web_blog.aspx.cdcab7d2.pvjlhomt.ashx'
}));
Blog = new Blog_class();

