// Utiliser AVx_GetUrlInObj (url, id de l'object html cible)
var oHttp = null;
function AVx_Feedback()
{
	if(oHttp.readyState == 4)
	{
		oHttp.oDestObj.innerHTML = oHttp.responseText;
		AVx_Init()
	}
}
function AVx_Init()
{
	if(window.XMLHttpRequest) // Firefox et autres
			oHttp = new XMLHttpRequest(); 
	else
		if(window.ActiveXObject) // Internet Explorer 
		try {oHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {oHttp = new ActiveXObject("Microsoft.XMLHTTP");}
	oHttp.onreadystatechange = AVx_Feedback
}
function AVx_GetUrlInObj(pUrl, pIdObj)
{
	
	oHttp.oDestObj = document.getElementById(pIdObj);
	oHttp.oDestObj.innerHTML="<img src='../images/loading2.gif'>";
	oHttp.open("Get", pUrl, true);
	oHttp.send(null);
}
AVx_Init();
