// JavaScript Document
<!--
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	alert("このページでは \"AC_RunActiveContent.js\" が必要です。");
} else {
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // 使用可能なバージョンが検出された場合
		// Flash ムービーの埋め込み
		document.write (
'<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="771" height="272" align="middle"> ' +
'<param name="allowScriptAccess" value="sameDomain" /> ' +
'<param name="movie" value="http://www.odyssey-com.co.jp/Oci_top_menu.swf" /> ' +
'<param name="quality" value="high" /> ' +
'<param name="wmode" value="transparent" /> ' +
'<param name="bgcolor" value="#ffffff" /> ' +
'<embed src="http://www.odyssey-com.co.jp/Oci_top_menu.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="771" height="272" align="middle" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/> ' +
'</object>'				
		);
	} else {  // Flash が古すぎるか、プラグインを検出できません
		document.write(
'<img src="http://www.odyssey-com.co.jp/images/topflash.jpg" border="0" usemap="#Map"> ' +
'<map name="Map"><area shape="rect" coords="4,16,156,64" href="think/index.html" alt="考えるトップページ"> ' +
'<area shape="rect" coords="159,16,305,64" href="acquire/index.html" alt="身につけるトップページ"> ' +
'<area shape="rect" coords="310,16,458,64" href="support/index.html"> ' +
'<area shape="rect" coords="462,16,610,65" href="work/index.html" alt="働くトップページ"> ' +
'<area shape="rect" coords="614,16,763,65" href="extend/index.html" alt="広げるトップページ"> ' +
'<area shape="rect" coords="14,74,758,263" href="cm3/index.html" target="_blank" alt="CMはこちら"> ' +
'</map> '
	 	 );  // Flash 以外のコンテンツを挿入する
	}
}
// -->