function RunSwf(chemin,width,height,transparence)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="0" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="'+width+'" height="'+height+'"> \n');
    document.write('<param name="movie" value="'+chemin+'" />\n');
    document.write('<param name="quality" value="High" />\n');
    document.write('<param name="wmode" value="'+transparence+'" />\n');
    document.write('<embed src="'+chemin+'" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" type="application/x-shockwave-flash" name="obj1" width="'+width+'" height="'+height+'" quality="High" />\n');
    document.write('</object>\n');
}


