//#############################################
//##########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()
		{
			sas_tmstp=Math.round(Math.random()*10000000000);
			
			var myDiv = document.getElementById('autres');
			
			myDiv.innerHTML = fichXML('Othertitre.php?time='+sas_tmstp);
			
			this.setTimeout("otherMusic()", 30000);
		}
		
	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);
	}