function affichestream(chiffre)
  {
	code_html = code[chiffre];
	code_boutonhtml = bouton[chiffre];
	//changement = 10; // Temps en secondes avant la rotation
	document.getElementById("videoStream").innerHTML = code_html;
	document.getElementById("boutonLive").innerHTML = code_boutonhtml;
	//chiffre = parseInt(Math.random()*2); // chiffre = parseInt(Math.random()*x); x est le nombre total de banni?res diff?rentes
	//window.setTimeout("bann()", (changement*1000));
  }
  // chaque codebann[x] contient l'url des fichiers stream
	code = new Array()
	// en low
	code[0] = '	<div id="videoPlay" style="margin: 45 0 0 28 !important;margin: 35 0 0 25;">'+
						'		<object id="mediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"'+
						'		  type="application/x-oleobject" width="320" height="180"'+
						'		  CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"'+
						'		  standby="Loading Windows Media Player components...">'+
						'		            <param name="FileName" value="http://202.3.225.84/Lowfr" />'+
						'		            <param name="ShowControls" value="false" />'+
						'		            <param name="ShowStatusBar" value="false" />'+
						'		            <param name="AutoStart" value="true" />'+
						'		  <embed id="mediaPlayer" name="mediaPlayer" src="http://202.3.225.84/Lowfr"'+
						'		  type="application/x-mplayer2"'+
						'		  autostart="1"'+
						'		  ShowControls="0"'+
						'		  ShowStatusBar="0"'+
						'		  width="320"'+
						'		  height="180"'+
						'		  pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ></embed>'+
						'		</object>'+
						'	</div>	';
	
	// en high					
	code[1] = '	<div id="videoPlay" style="margin: 10 0 0 28 !important;margin: 0 0 0 25;">'+
						'		<object id="mediaPlayer" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95"'+
						'		  type="application/x-oleobject" width="320" height="240"'+
						'		  CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112"'+
						'		  standby="Loading Windows Media Player components...">'+
						'		            <param name="FileName" value="http://202.3.225.84/Hifr" />'+
						'		            <param name="ShowControls" value="false" />'+
						'		            <param name="ShowStatusBar" value="false" />'+
						'		            <param name="AutoStart" value="true" />'+
						'		  <embed id="mediaPlayer" name="mediaPlayer" src="http://202.3.225.84/Hifr"'+
						'		  type="application/x-mplayer2"'+
						'		  autostart="1"'+
						'		  ShowControls="0"'+
						'		  ShowStatusBar="0"'+
						'		  width="320"'+
						'		  height="240"'+
						'		  pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" ></embed>'+
						'		</object>'+
						'	</div>	';
	bouton = new Array()
	bouton[0] = '<div id="boutonLive">'+
							'		<div id="boutonHigh">'+
							'			<a href="javascript:affichestream(1);" ><img src="images/high.gif" border="0" width="65" height="28" /></a>'+
							'		</div>'+
							'		<div id="boutonLow">'+
							'			<img src="images/lowClick.gif" border="0" width="65" height="28" />'+
							'		</div>'+
							'		<div id="autresVideos">'+
							'			<a href="livePlaylist.html" class="nolien"><img src="images/autresVideos.jpg" border="0" width="133" height="15" /></a>'+
							'		</div>'+
							'</div>';
	bouton[1] = '<div id="boutonLive">'+
							'		<div id="boutonHigh">'+
							'			<img src="images/highClick.gif" border="0" width="65" height="28" />'+
							'		</div>'+
							'		<div id="boutonLow">'+
							'			<a href="javascript:affichestream(0)" ><img src="images/low.gif" border="0" width="65" height="28" /></a>'+
							'		</div>'+
							'		<div id="autresVideos">'+
							'			<a href="livePlaylist.html" class="nolien"><img src="images/autresVideos.jpg" border="0" width="133" height="15" /></a>'+
							'		</div>'+
							'</div>';