// JavaScript Document

<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
    + 'width="100%" height="100%"'
    + 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="myFlash" align="top">'
    + '<param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="animated.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="scale" value="exactfit" /><param name="salign" value="lt" />'
    + '<embed src="animated.swf" quality="high" bgcolor="#000000"'
    + 'width="100%" height="100%" name="myFlash" align="top"'
    + 'scale="exactfit"'
    + 'salign="lt"'
    + 'allowScriptAccess="always"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div id="inhalt_alt" style="text-align:center; color:#666666; font-family:Arial, Helvetica, sans-serif; font-size:0.75em;"><img src="splash.jpg" width="600" height="600" /><br /><br />Adobe Flash Player 8 or higher is required to view this exhibition.<br /><br />Please download Flash Player by <a href="http://www.macromedia.com/go/getflash/" target="_blank" style="color:#ef193b; text-decoration:none;">clicking here</a>.</div>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->