function test(id_publicite)
{
	if (window.XMLHttpRequest)													//	Objet de la fenêtre courant
	{
		xhr = new XMLHttpRequest();												//	Firefox, Safari, ...
	}
	else
	{
		if (window.ActiveXObject)													//	Version Active
		{
			xhr = new ActiveXObject("Microsoft.XMLHTTP");		//	Internet Explorer
		}
	}

	xhr.open( 'GET', 'publicite'+id_publicite+'/compte.html', false);
	
	xhr.send(null);
}