function affiche_video(fichier,width,height){
	document.write('<object id  ="flashMovie" \n');
   document.write('codeBase ="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" \n');
   document.write('height   ="'+height+'" \n');
   document.write('width    ="'+width+' "\n');
   document.write('classid  ="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>\n');
   document.write('<PARAM NAME="_cx"                VALUE="26">\n');
   document.write('<PARAM NAME="_cy"                VALUE="26">\n');
   document.write('<PARAM NAME="FlashVars"          VALUE="csConfigFile='+fichier+'_config.xml">\n');
   document.write('<PARAM NAME="Movie"              VALUE="'+fichier+'_controller.swf?csConfigFile='+fichier+'_config.xml">   \n');
   document.write('<PARAM NAME="Src"                VALUE="'+fichier+'_controller.swf?csConfigFile='+fichier+'_config.xml">\n');
   document.write('<PARAM NAME="WMode"              VALUE="Window">\n');
   document.write('<PARAM NAME="Loop"               VALUE="false">\n');
   document.write('<PARAM NAME="Quality"            VALUE="high">\n');
   document.write('<PARAM NAME="SAlign"             VALUE="">\n');
   document.write('<PARAM NAME="Menu"               VALUE="-1">\n');
   document.write('<PARAM NAME="Base"               VALUE="">\n');
   document.write('<PARAM NAME="AllowScriptAccess"  VALUE="always">\n');
   document.write('<PARAM NAME="Scale"              VALUE="ShowAll">\n');
   document.write('<PARAM NAME="DeviceFont"         VALUE="0">\n');
   document.write('<PARAM NAME="EmbedMovie"         VALUE="0">\n');
   document.write('<PARAM NAME="BGColor"            VALUE="#FFFFFF">\n');
   document.write('<PARAM NAME="SWRemote"           VALUE="">\n');
   document.write('<PARAM NAME="MovieData"          VALUE="">\n');
   document.write('<PARAM NAME="SeamlessTabbing"    VALUE="1">\n');
									
   document.write('<EMBED src         ="'+fichier+'_controller.swf?csConfigFile='+fichier+'_config.xml" \n');
   document.write('flashvars   ="csConfigFile='+fichier+'_config.xml" \n');
   document.write('quality     ="high" \n');
   document.write('bgcolor     ="#FFFFFF" \n');
   document.write('width       ="'+width+'" \n');
   document.write('height      ="'+height+'" \n');
   document.write('type        ="application/x-shockwave-flash" \n');
   document.write('pluginspace ="http://www.macromedia.com/go/getflashplayer">	\n');
   document.write('</EMBED>\n');
	document.write('</OBJECT>\n');
}


function RunVideo(fichier,width,height)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="Pronote" align="middle">\n');
	document.write('<param name="movie" value="'+fichier+'.swf" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<embed src="'+fichier+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"  width="'+width+'" height="'+height+'" wmode="transparent"></embed>\n');
	document.write('</object>\n');
}
