// 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 data="fileadmin/flash/intro.swf" type="application/x-shockwave-flash"'
		+ 'width="763" height="480">'
		+ '<param name="movie" value="fileadmin/flash/intro.swf">'
		+ '<param name="quality" value="high">'
		+ '<param name="scale" value="exactfit">'
		+ '<param name="menu" value="false">'
		+ '<param name="bgcolor" value="#ffffff">'
		+ '<param name="wmode" value="transparent"> '
		+ '</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://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BUIGP" target="_blank"><img src="fileadmin/flash/noflash/intro.jpg" border="0"></a>';

    document.write(alternateContent);  // insert non-flash content
  }
}