// 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" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=727 HEIGHT=33><PARAM NAME=movie VALUE="flash/SecondaryV2.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#5E99AA> <EMBED src="flash/SecondaryV2.swf" quality=high bgcolor=#5E99AA  WIDTH=727 HEIGHT=33 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 = '<IMG SRC="flash/FlashSwap.gif" HEIGHT="33" WIDTH="727" border="0">';

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