function Update(){
	var Text = new Array();
	//Text[0] = '<span class="Color02">RUN</span>ISO assure l\'hébergement <br />et le run d\'orange.fr';
	Text[0] = '<span class="Color02">Une communauté d’experts<br />&nbsp;</span>';
	Text[1] = '<span class="Color02">Une communauté d’experts<br />&nbsp;</span>';
	Text[2] = '<span class="Color02">RUN</span>ISO leader d’applications marketing';

	var Info = document.getElementById('InfoUpdate');
	if(Info){
		var Nb = document.getElementById('InfoUpdateNb');
		Nb.value = parseInt(Nb.value)+1;
		if(parseInt(Nb.value) >= Text.length){
			Nb.value = 0;
		}
		Info.innerHTML = Text[parseInt(Nb.value)];
	}
	setTimeout("Update()",2500);
}
setTimeout("Update()",750);

function Flash(){
	var Swf = '<object type="application/x-shockwave-flash" data="./media/cartouche.swf" width="234px" height="154px">';
	Swf += '<param name="movie" value="./media/cartouche.swf" />';
	Swf += '<param name="menu" value="false" />';
	Swf += '<param name="quality" value="best" />';
	Swf += '<param name="scale" value="exactfit" />';
	Swf += '<param name="wmode" value="transparent" />';
	Swf += '</object>';
	document.getElementById('Flash').innerHTML = Swf;
}
setTimeout("Flash()",750);