	function flag(entityID, entityType){
		new Ajax.Request("/flagMatureContent.do", { 
		 onSuccess : function(resp) { 
		 	document.getElementById("flagcontent").innerHTML="<p>The content has been flagged. Thanks for keeping Cylive safe!</p>";
		 }, 
		 onFailure : function(resp) { 
		 	//alert(document.getElementById("ratingelement").innerHTML);
		 	document.getElementById("flagcontent").innerHTML="<p>There was an error flagging the content. Please retry, or contact Cylive Support</p>";
		 }, 
		 parameters : "id="+entityID+"&type="+entityType
		});
	}