if(typeof Burlington == "undefined") Burlington={};
if(typeof Burlington.controls == "undefined") Burlington.controls={};
Burlington.controls.Comments_class = function() {};
Object.extend(Burlington.controls.Comments_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	RemoveComment: function(Id) {
		return this.invoke("RemoveComment", {"Id":Id}, this.RemoveComment.getArguments().slice(1));
	},
	AddComment: function(description, Id, commentType, UserId) {
		return this.invoke("AddComment", {"description":description, "Id":Id, "commentType":commentType, "UserId":UserId}, this.AddComment.getArguments().slice(4));
	},
	url: '/ajaxpro/Burlington.controls.Comments,Burlington.ashx'
}));
Burlington.controls.Comments = new Burlington.controls.Comments_class();

