if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	document.write('<img src="/images/index_keyimage.jpg" alt="" \/>');
} else {
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // 使用可能なバージョンが検出された場合
		// Flash ムービーの埋め込み
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0',
			'width', '740',
			'height', '250',
			'src', '/images/index_keyimage',
			'quality', 'high',
			'pluginspage', 'http://www.adobe.com/go/JP-H-GET-FLASH',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'keyimage',
			'bgcolor', '#FFF',
			'name', 'index_keyimage',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', '/images/index_keyimage',
			'salign', ''
			); //end AC code
	} else {  // Flash が古すぎるか、プラグインを検出できません
		var alternateContent = '<div><img src="/images/index_keyimage.jpg" alt="" \/><\/div>\n' 
			+ '<div class="linkBlock100pr"><div class="col33prL"><div class="pT10 pR10"><a href="http://www.adobe.com/go/JP-H-GET-FLASH"><img src="/common/images/get_adobe_flash_player.png" alt="Adobe Flash Playerのダウンロード" class=\"bordernone\" \/><\/a><\/div><\/div><div class="col67prR"><div class="fontS pT10">このホームページをご覧いただくためには<a href="http://www.adobe.com/go/JP-H-GET-FLASH">Adobe Flash Player<\/a>が必要です。<a href="http://www.adobe.com/go/JP-H-GET-FLASH">Adobe Flash Player<\/a>がインストールされていない場合や、インストールしているのに正しく表示されない場合は、最新の<a href="http://www.adobe.com/go/JP-H-GET-FLASH">Adobe Flash Player<\/a>をインストールしてご覧ください。<\/div><\/div><div class="clearBoth"><\/div><\/div>\n';
			
		document.write(alternateContent);  // Flash 以外のコンテンツを挿入する
	}
}
