Comments_class = function() {};
Object.extend(Comments_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetComments: function(WebID, type) {
		return this.invoke("GetComments", {"WebID":WebID, "type":type}, this.GetComments.getArguments().slice(2));
	},
	PostComment: function(type, WebID, CommentText, Attempt) {
		return this.invoke("PostComment", {"type":type, "WebID":WebID, "CommentText":CommentText, "Attempt":Attempt}, this.PostComment.getArguments().slice(4));
	},
	DeleteComment: function(type, WebID) {
		return this.invoke("DeleteComment", {"type":type, "WebID":WebID}, this.DeleteComment.getArguments().slice(2));
	},
	UpdateComment: function(type, WebID, Body, ObjWebID) {
		return this.invoke("UpdateComment", {"type":type, "WebID":WebID, "Body":Body, "ObjWebID":ObjWebID}, this.UpdateComment.getArguments().slice(4));
	},
	PostReply: function(type, WebID, Body, ObjWebID) {
		return this.invoke("PostReply", {"type":type, "WebID":WebID, "Body":Body, "ObjWebID":ObjWebID}, this.PostReply.getArguments().slice(4));
	},
	url: '/ajaxpro/Comments,App_Web_pk7gtmbe.ashx'
}));
Comments = new Comments_class();

