// 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=4,0,2,0" '
			 + 'width="202" height="275">'
		       + '<param name=movie value="/northernireland/learning/eyewitness/flash/myth_buster.swf">'
             	 + '<PARAM NAME="PLAY" VALUE="true">'
			 + '<PARAM NAME="LOOP" VALUE="false">'
			 + '<PARAM NAME="QUALITY" VALUE="high">'
			 + '<PARAM NAME="MENU" VALUE="false">'
			 + '<embed src="/northernireland/learning/eyewitness/flash/myth_buster.swf" '
			 + 'quality="high" '
                   + 'menu="false" '
                   + 'pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" '
			 + 'type="application/x-shockwave-flash" '
                   + 'width="202" height="275">'
			 + '</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 = '<a href="http://sdc.shockwave.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" target="_blank"><img src="/northernireland/learning/eyewitness/images/get_flash2.jpg" alt="Download Flash 6 Player" width="202" height="275"  border="0" class="vthumbpic"></a>'; 

    /*writeNoFlash();  // insert non-flash content*/
	 document.write(alternateContent);
	   }
}
