<!-- 
function AffCommentaires(callback)
{
	var xhr = getXMLHttpRequest();
	
	xhr.onreadystatechange = function()
	{
		if (xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 0))
		{
			callback(xhr.responseText);
		}
	};
	
	var idArticle = document.getElementById("idArticle").value;
	
	xhr.open("GET", "./modules/commentaires/commentaires.php?article=" + idArticle, true);
	xhr.send(null);
}

function readComms(sCommentaires)
{
	var idArticle = document.getElementById("idArticle").value;

	document.getElementById("AffCommentaires_" + idArticle).innerHTML = sCommentaires;
	document.getElementById("CommentairesButton" + idArticle).style.display = "none";
}
//-->
