function LoadCT() { 
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="700" height="500"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="../chesstheatre_gui.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="lt" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="../chesstheatre_gui.swf" quality="high" scale="noscale" salign="lt" bgcolor="#ffffff" '
    + 'width="700" height="500" name="ChessTheatre" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + '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 = 'Sorry, '
  	+ 'this content requires  Macromedia Flash Player 8 or up.'
   	+ '<a href=http://www.macromedia.com/go/getflash/>Click here to get the latest Flash Player</a>';
    document.write(alternateContent);   
  }
}  

 