<!--
var http_remove_comment = getHTTPObject();
var url_remove_comment = "remove_comment.php?";

function handleHttpResponse_remove_comment() {
	if (http_remove_comment.readyState == 4) { 
		if(http_remove_comment.status == 200 || http_remove_comment.status == 304 || http_remove_comment.status == 307){ 
			document.getElementById('commenti').style.display = 'none';
			document.getElementById('div_area_info').style.display = 'block';
			document.getElementById('area_info').innerHTML = http_remove_comment.responseText;
			occupato_remove_comment = false;
		}
	}
}


var occupato_remove_comment = false;
function remove_comment_xmlhttprequest(class_name,comment) {
	if (!occupato_remove_comment && http_remove_comment) { 
		var url_remove_comment_completo = url_remove_comment+"classe="+encodeURIComponent(class_name)+"&commento="+encodeURIComponent(comment);
		http_remove_comment.open("GET", url_remove_comment_completo, true);
		http_remove_comment.onreadystatechange = handleHttpResponse_remove_comment;
		occupato_remove_comment = true;
		http_remove_comment.send(null);
	}
}
//-->