<!--
// Version check based upon the values entered above in "Globals"
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
// Check to see if the version meets the requirements for playback
if (hasReqestedVersion) {
  // if we've detected an acceptable version
  // embed the Flash Content SWF when all tests are passed
  AC_FL_RunContent(
        "src", "top/swf/top",
        "width", "770",
        "height", "310",
        "align", "middle",
        "id", "",
        "quality", "high",
        "bgcolor", "#FFFEF5",
        "wmode", "opaque",
        "name", "",
        "allowScriptAccess","sameDomain",
        "type", "application/x-shockwave-flash",
        'codebase', 'https://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
        "pluginspage", "http://www.adobe.com/go/getflashplayer"
  );
 } else {  // flash is too old or we can't detect the plugin
  var alternateContent = '<div class="topMsg"><p>Adobe Flash'
  + ' Playerがインストールされていないか、もしくはバージョンが最適ではありません。<\/p>'
  + '<p>このサイトは、Adobe Flashソフトウェアを使用しています。<br>'
  + 'ページを適切に表示するには、ご使用のブラウザで再生するためのプラグイン、Adobe Flash'
  + ' Player（バージョン8.0以上）が必要です。<br>'
  + '下記プラグインバナーより最新版をダウンロードしてください。<\/p>'
  + '<p><a rel="external" href="http://www.adobe.com/go/getflash/">'
  + '<img src="common/images/get_flash_player.gif" alt="Get Adobe Flash Player" width="88" height="31">'
  + '<\/a><\/p>'
  + '<p>AdobeおよびFlashは合衆国およびその他の国におけるAdobe Systems Incorporatedの商標または登録商標です。<\/p><\/div>';
  document.write(alternateContent);  // insert non-flash content
}
// -->
