<!-- 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<div style="position: relative; text-align: center; margin-left: auto; margin-right: auto;"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="490" height="130"'
    + 'codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="/webgraphics/flash/logo.swf" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="loop" value="false" /><param name="bgcolor" value="#0F0F31" />'
    + '<embed src="/webgraphics/flash/logo.swf" menu="false" quality="high" bgcolor="#0F0F31"'
    + 'width="490" height="130" name="logo" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="https://www.macromedia.com/go/getflashplayer">'
    + '<\/EMBED>'
    + '<\/OBJECT><\/div>';
    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = '<div style="text-align: center;"><img src="http://www.silkrooster.com/webgraphics/logo.jpg" alt="nonflash - logo.jpg (223kb)&nbsp;&nbsp;flash logo(417KB)" />'
  	+ '<p>This content requires the Macromedia Flash Player.<br />'
   	+ '<a href="https://www.macromedia.com/go/getflash/">Get Flash</a><\/p><\/div>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->