function reportComment(id, obj){
	if(obj){
		obj.parentNode.removeChild(obj);
	}
	$.ajax({
		type: 'POST',
		url: window.location.href,
		data: {
			report_comment_id: id
		},
		success: function(msg, status){
			alert("Thank you for reporting this comment.\nOne of our staff members will check it as soon as possible.");
		},
		failure: function (XMLHttpRequest, textStatus, errorThrown) {
			alert('Something went wrong. Please try again later.');
		}
	});
}