// 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="450" height="338"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
	+ '<param name="allowScriptAccess" value="sameDomain" />'
    + '<param name="movie" VALUE="/new_videos/soundtrack02.swf" />'
    + '<param name="quality" VALUE="high">'
    + '<param name="scale" value="exactfit" />'
    + '<param name="loop" VALUE="false" />'
    + '<param name="menu" VALUE="false" />'
	+ '<param name="bgcolor" value="#42301a" />'
    + '<embed src="/new_videos/soundtrack02.swf"'
    + 'width="450" height="338"'
	+ 'allowscriptaccess="sameDomain"'
    + 'scale="exactfit"'
	+ 'bgcolor="#f7f8f8"'
    + '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 {  // flash is too old or we can't detect the plugin
    // NOTE: height, width are required!
    var alternateContent = '<p align="center" style="color: #fff;">This site requires the <a href="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">Flash 8 plugin</a> to operate properly.<br />Please <a href="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">download the free player here</a>.</p>';

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