

var dataPath   = '/flash/panel.vars';
var panelsPath = '/images/shared/flash';
var clickPath = '/search/index.html';
      
var flashVars  = '';
flashVars = 'dataPath='+escape(dataPath);
flashVars = flashVars+'&panelPath='+escape(panelsPath);
flashVars = flashVars+'&clickUrl='+escape(clickPath);

if (!useRedirect) {
  if(hasRightVersion) {
    var oeTags = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"'
    + 'WIDTH="468" HEIGHT="240">'
    + '<PARAM NAME="MOVIE" VALUE="/flash/panel.swf?'+flashVars+'">'
    + '<PARAM NAME="PLAY" VALUE="true">'
    + '<PARAM NAME="LOOP" VALUE="false">'
    + '<PARAM NAME="QUALITY" VALUE="high">'
    + '<PARAM NAME="MENU" VALUE="false">'
    + '<EMBED SRC="/flash/panel.swf?'+flashVars+'"'
    + 'WIDTH="468" HEIGHT="240"'
    + '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(oeTags);   // embed the flash movie
  } else {
    var alternateContent = '<img name="splash_flash" src="/images/shared/static/200116914-001.jpg" width="468" height="240" border="0" id="splash_flash" alt="" />'
    document.write(alternateContent);  // insert non-flash content
  }
}
