//#############################################
//##########Pierre JURKIEWICZ 2007#############
//#############################################

		
	function dansdiv(ident,texte)
	{
		document.getElementById(ident).innerHTML = texte;
	}

	function Banalea(ident)
	{
				sas_tmstp=Math.round(Math.random()*10000000000);
				texte = fichXML('PubP.php?id='+sas_tmstp)
				dansdiv(ident,texte);
	}
	
	function fichXML(fichier)
	{
		if(window.XMLHttpRequest) // FIREFOX
			xhr_object = new XMLHttpRequest();
		else if(window.ActiveXObject) // IE
			xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
		else
			return(false);
			xhr_object.open("GET", fichier, false);
			if(xhr_object.overrideMimeType)
			{
				xhr_object.overrideMimeType('text/html; charset=ISO-8859-15'); 
			}
			xhr_object.send(null);
		if(xhr_object.readyState == 4) return(xhr_object.responseText);
		else return(false);
	}
