function ShowChaton(elem){
	
		var chiffrRand = Math.floor(17*Math.random()+1);
	
	if(navigator.appVersion.indexOf("MSIE") > -1){
		if(elem.style.display == 'inline-block'){
			elem.style.display = 'none';
			elem.innerHTML = "";
		}
		else{
			document.getElementById('chaton').style.display = 'none';
			document.getElementById('chaton').innerHTML = "";
			
			elem.style.display = 'inline-block';
			var flash = "<object data='http://www.palaisdetokyo.com/fo3_content/media_pod/player_son.swf?song=../../../fo3_content/media_pod/chatonsky/"+chiffrRand+".mp3' type='application/x-shockwave-flash' width='305' height='18'><param name='movie' value='http://www.palaisdetokyo.com/fo3_content/media_pod/player_son.swf?song=../../../fo3_content/media_pod/chatonsky/"+chiffrRand+".mp3' /></object>";
			
			elem.innerHTML = flash;
		}
	}
	else{
		if((elem.style.display == 'inline-block') || (elem.style.display == 'table-cell')){
			elem.style.display = 'none';
			elem.innerHTML = "";
		}
		else{
		
			document.getElementById('chaton').style.display = 'none';
			document.getElementById('chaton').innerHTML = "";
			
			elem.style.display = 'inline-block';
			elem.style.display = 'table-cell';
			var flash = "<embed src='http://www.palaisdetokyo.com/fo3_content/media_pod/player_son.swf?song=../../../fo3_content/media_pod/chatonsky/"+chiffrRand+".mp3' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='305' height='18'></embed>";
			elem.innerHTML = flash;
		}
	}
}   





