// 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", "/ja/common/swf/top-main",
    "width", "960",
    "height", "330",
    "align", "middle",
    "id", "tksl_flash",
    "quality", "high",
    "bgcolor", "#000000",
    "name", "tksl_flash",
    "allowScriptAccess","sameDomain",
    "type", "application/x-shockwave-flash",
    'codebase', 'http://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 = '<a href="http://get.adobe.com/jp/flashplayer/" target="_blank"><img src="/ja/incf0u00000004vr-img/altimage.jpg" id="fla_altimg" name="fla_altimg" width="960" height="330" alt="TKSL ロジスティクスにチカラを｜本イメージは、FlashPlayerのインストールが必要です。本イメージをクリックして、FlashPlayerをインストールして、再読み込みするとご覧できます。" /></a>';
 document.write(alternateContent);  // insert non-flash content

}