    var divx_plugin=0;
		tabVideos=new Array("http://www.clusif.asso.fr/video/clusif-sinistralite-2006-intro.avi",
			"http://www.clusif.asso.fr/video/clusif-sinistralite-2006-presentation.avi");

		function activerJavascriptSVP()
		{
	    if (navigator.userAgent.indexOf('MSIE') != -1 || navigator.userAgent.indexOf('Safari') != -1) divx_plugin = document.getElementById('ie_divx');
	    else divx_plugin = document.getElementById('any_divx');

			if (divx_plugin && divx_plugin.GetVersion())
			{
				document.getElementById('activer-javascript').style.display='none';
				for (var i=1; i<=tabVideos.length; i++) document.getElementById("btnDemarrer"+i).style.display='block';
			}
		}
		if (window.addEventListener)
		{
			window.addEventListener('load', activerJavascriptSVP, false);
		}
		if (window.attachEvent)
		{
			window.attachEvent('onload', activerJavascriptSVP);
		}
		

		function playvideo(part)
		{
			if (divx_plugin)
			{
				divx_plugin.SetMode("mini");
				divx_plugin.Open(tabVideos[part]);
				divx_plugin.Play();
			}
		}
