
<!-- 

var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if(hasRightVersion) {  // 使用可能なバージョンが検出された場合

    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'

    + 'width="760" height="454"'

    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'

    + '<param name="movie" value="2007top.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />'

    + '<embed src="2007top.swf" quality="high" bgcolor="#ffffff" '

    + 'width="760" height="454" name="2007top" 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);   // Flash ムービーの埋め込み

  } else {  // Flash が古すぎるか、プラグインを検出できません

    var alternateContent = '<img name="topfla" src="images/topfla.jpg" width="760" height="454" border="0" usemap="#m_topfla" alt=""><map name="m_topfla"><area shape="rect" coords="609,400,760,454" href="gloveglobe/index.html" alt="glove globe" ><area shape="rect" coords="457,400,609,454" href="aboutus/index.html" alt="企業情報" ><area shape="rect" coords="305,400,457,454" href="search/index.html" alt="商品を探す" ><area shape="rect" coords="153,400,305,454" href="working/index.html" alt="法人のお客様" ><area shape="rect" coords="0,400,153,454" href="living/index.html" alt="個人のお客様" ><area shape="rect" coords="543,33,620,44" href="contact/index.html" alt="お客様相談室" ></map>'

    document.write(alternateContent);  // Flash 以外のコンテンツを挿入する

  }

// -->