if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion && !objBrowser.safari && !objBrowser.ns4) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="868" height="485" id="take11" align="middle">\n'
	+ '<param name="allowScriptAccess" value="sameDomain" />\n'
	+ '<param name="movie" value="/portal/cms_docs_innovate/innovate/global/flash/take11.swf" />\n'
	+ '<param name="quality" value="high" />\n'
	+ '<param name="wmode" value="transparent" />\n'
	+ '<param name="bgcolor" value="#000000" />\n'
	+ '<embed src="/portal/cms_docs_innovate/innovate/global/flash/take11.swf" quality="high" wmode="transparent" bgcolor="#000000" width="868" height="485" name="take11" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n'
	+ '</object>\n';

    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div class="no-flash">\n'
	+ 'This demonstration requires Adobe Flash Player version 8 or higher.\n'
	+ 'To view this content, please <a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank">download</a> the latest version.\n'
	+ '</div>\n';

    document.write(alternateContent);  // insert non-flash content
  }
}