// 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="movie" value="beatrix.swf?xml_path=data.php" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="scale" value="exactfit" /><param name="salign" value="lt" />'
    + '<embed src="beatrix.swf?xml_path=data.php" quality="high" bgcolor="#FFFFFF"'
    + 'width="100%" height="100%" name="myFlash" align="top"'
    + 'scale="exactfit"'
    + 'salign="lt"'
    + 'quality="high"'
    + '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 = '<table border="0" cellpadding="0" cellspacing="0" width="500" height="500"><tr><td align="center" valign="middle"><p><img src="bert_logo.gif" alt="Beatrix &amp; Bertram" width="198" height="65" /></p><p>This site requires Adobe Flash Player 8 or higher.</p><p>Please <a href="http://www.macromedia.com/go/getflash/" target="_blank" style="color:#977c58; text-decoration:underline;">click here</a> to download Flash Player.</p></td></tr></table>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
