<!--
var http_select_comment = getHTTPObject();
var url_select_comment = "select_comment.php?classe=";

function handleHttpResponse_select_comment() {
	if (http_select_comment.readyState == 4) { 
		if(http_select_comment.status == 200 || http_select_comment.status == 304 || http_select_comment.status == 307){ 
			document.getElementById('area_info').innerHTML=http_select_comment.responseText;
			occupato_select_comment = false;
			document.body.style.cursor = "auto";
		}
	}
}


var occupato_select_comment = false;
function select_comment_xmlhttprequest(class_name) {
	if (!occupato_select_comment && http_select_comment) { 
		document.body.style.cursor = "wait";
		document.getElementById("div_area_info").style.display = "block";
		http_select_comment.open("GET", url_select_comment+class_name, true);
		http_select_comment.onreadystatechange = handleHttpResponse_select_comment;
		occupato_select_comment = true;
		http_select_comment.send(null);
	}
}

//-->
