function addComment(id, name, date) {
	$('#CommentParentId').val(id);
	$('#ReplyCommentName').html(name);
	$('#ReplyCommentDate').html(date);
	$('#CommentContainer').show();
}

