// fonction pour intégrer une animation flash dans la page.

<!-- Begin

function lancerflash (width,height,fichier,clsid) {

   var codeflash = '<OBJECT CLASSID="clsid:'+clsid+'"'

    + 'WIDTH="'+width+'" HEIGHT="'+height+'"'

+ 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'

    + '<PARAM NAME="MOVIE" VALUE="'+fichier+'">'

    + '<PARAM NAME="PLAY" VALUE="true">'

+ '<PARAM NAME="LOOP" VALUE="false">'

+ '<PARAM NAME="QUALITY" VALUE="high">'

+ '<PARAM NAME="MENU" VALUE="false">'

+ '<EMBED SRC="'+fichier+'"'

    + 'WIDTH="'+width+'" HEIGHT="'+height+'"'

+ 'PLAY="true"'

+ 'LOOP="false"'

+ 'QUALITY="high"'

+ 'MENU="false"'

+ 'TYPE="application/x-shockwave-flash"'

+ 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'

    + '</EMBED>'

+ '</OBJECT>';

   document.write(codeflash);
      // écrire l'animation flash 

}



// End -->