function vote(section, id){
	$("#conferma-votazione").hide();
	$("#ajax-loader-votazione").show();
	$.ajax({
		   type: "GET",
		   url: URL_ROOT+"ajax_engine.php?page=bl-vote.php",
		   data: "section=" + section + "&id=" + id,
		   success: function(msg){
				$("#ajax-loader-votazione").hide();
				$("#votazione-espressa").html(msg);
		   }
	 });
}
