function afficheVideo(video)
{
	document.write('<object border="0" id="mediaplayer" style="height:260px; width: 300px;" classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95" standby="Video en cours de chargement...Veuillez patienter SVP" type="application/x-oleobject">\n');
	document.write('<param name="filename" value="'+video+'"/>\n');
	document.write('<param name="showcontrols" value="1"/>\n');
	document.write('<param name="showstatusbar" value="0"/>\n');
	document.write('<param name="autostart" value="false"/>\n');
	document.write('<param name="autoload" value="1"/>\n');
	document.write('<param name="showgotobar" value="0"/>\n');
	document.write('<embed type="application/x-mplayer2" src="'+video+'" pluginspage="http://www.microsoft.com/windows/mediaplayer/download/default.asp" showcontrols="1" showdisplay="0" showstatusbar="0" showgotobar="0" style="height:260px; width: 300px;">\n');
	document.write('</embed>\n');
	document.write('</object>\n');
}
