// 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="760" HEIGHT="200"'
    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<PARAM NAME="MOVIE" VALUE="global/flash/drk_ani.swf">'
    + '<PARAM NAME="PLAY" VALUE="true">'
    + '<PARAM NAME="LOOP" VALUE="false">'
    + '<PARAM NAME="QUALITY" VALUE="high">'
    + '<PARAM NAME="MENU" VALUE="false">'
    + '<EMBED SRC="global/flash/drk_ani.swf"'
    + 'WIDTH="760" HEIGHT="200"'
    + 'PLAY="true"'
    + '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 = '<table width="760" height="200" border="0" cellspacing="0" cellpadding="0"><tr> <td background="global/img/background/red_stripes.gif" width="72%" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0" height="180"><tr><td>&nbsp;</td><td valign="top"><div align="right"><img name="start_slogan" src="global/img/startseite/start_slogan.gif" width="131" height="100" border="0" alt="Konferenzcenter - Tagungshotel - Restaurant"></div></td></tr><tr><td><div align="right"><a href="de/index.htm" onFocus="if(this.blur)this.blur()"><img src="global/img/startseite/start_deutsch.gif" alt="Sprachwahl - Deutsch" width="134" height="30" border="0"></a></div></td><td><a href="en/index.htm" onFocus="if(this.blur)this.blur()"><img src="global/img/startseite/start_englisch.gif" width="132" height="30" border="0" alt="Sprachwahl - Englisch"></a></td> </tr></table></td><td width="28%"><img src="global/img/photo/biznight_md.jpg" alt="Hotel am Froschbächel in Bühl" width="294" height="204"></td></tr></table>';

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