// In this section we set up the content to be placed dynamically on the page.
// Customize movie tags and alternate html content below.

if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'WIDTH="1000" HEIGHT="600"'
    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<PARAM NAME="MOVIE" VALUE="intro.swf">'
    + '<PARAM NAME=scale VALUE=noborder>'
    + '<PARAM NAME=salign VALUE=LT>'
    + '<PARAM NAME="QUALITY" VALUE="high">'
    + '<PARAM NAME=bgcolor VALUE=#000000>'
    + '<EMBED SRC="intro.swf"'
    + 'WIDTH="1000" HEIGHT="600"'
    + 'scale=noborder'
    + 'salign=LT'
    + 'QUALITY="high" bgcolor="#000000"'
    + 'MENU="false"'
    + 'TYPE="application/x-shockwave-flash"'
    + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
    + '</EMBED>'
    + '</OBJECT>';

    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    // NOTE: height, width are required!
    var alternateContent = '<table bgcolor="#FFFFFF" border="0" cellpadding="10" cellspacing="0"><tr><td><p><font face="Arial,Helvetica,sans-serif" size="3" color="Navy"><b>Vous êtes sur le site internet EBLC</b><br>Si vous êtes sur cette page, c\'est que vous n\'avez pas le lecteur FLASH installé sur votre ordinateur.</font></p>' 
      + '<p><font face="Arial,Helvetica,sans-serif" size="2"><a href="/accueil.php">Cliquez ici pour aller directement sur le site</a></font></p><p><font face="Arial,Helvetica,sans-serif" size="2"><a href="http://www.macromedia.com/downloads/" target=_blank><IMG SRC="images/logo_flash.gif" border=0 align=absmiddle> Cliquez ici pour installer Macromedia Flash Player et voir l\'intro animée</a></font></p></td></tr></table>';

    document.write(alternateContent);  // insert non-flash content
  }
}
