//#############################################
//##########Pierre JURKIEWICZ 2007#############
//#############################################
		
		function oneMusic()
		{
			sas_tmstp=Math.round(Math.random()*10000000000);
			
			var myDiv = document.getElementById('info');
			
			myDiv.innerHTML = fichXML('Onetitre.php?time='+sas_tmstp);
			
			this.setTimeout("oneMusic()", 15000);
		}
		
		function otherMusic(page)
		{
			sas_tmstp=Math.round(Math.random()*10000000000);
			
			var myDiv = document.getElementById('fond_module_alantene');
			
			myDiv.innerHTML = fichXML(page+'?time='+sas_tmstp);
			
			this.setTimeout("otherMusic('"+page+"')", 30000);
		}
		
		function oneTitle()
		{
			sas_tmstp=Math.round(Math.random()*10000000000);
			
			var myDiv = document.getElementById('textedefilant');
			
			myDiv.innerHTML = fichXML('Onenews.php?time='+sas_tmstp);
			
			this.setTimeout("oneTitle()", 75000);
		}
		
	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);
			xhr_object.send(null);
		if(xhr_object.readyState == 4) return(xhr_object.responseText);
		else return(false);
	}
