if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	alert("このページでは \"AC_RunActiveContent.js\" が必要です。");
} 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=8,0,0,0',
			'width', '100%',
			'height', '100%',
			'src', 'index',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'false',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'index',
			'bgcolor', '#ffffff',
			'name', 'index',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', 'swf/index',
			'salign', ''
			); //end AC code
	} else {  // Flash が古すぎるか、プラグインを検出できません
		var alternateContent = '<table border="0" cellpadding="10" cellspacing="0" width="100%" height="100%">'
		+ '<tr><td align="center">'
		+ '<table width="970" border="0" cellspacing="0" cellpadding="0">'
		+ '<tr>'
		+ '<td height="515" colspan="3" valign="top"><img src="img/main.jpg" width="970" height="510" border="0" alt="資生堂 ばら園"></td>'
		+ '</tr>'
		+ '<tr valign="top">'
		+ '<td width="120"><a href="http://www.adobe.com/go/getflashplayer_jp" target="_blank"><img src="img/get_flash_player.gif" width="112" height="33"  border="0" alt="Get Abobe FLASH PLAYER"></a></td>'
		+ '<td width="745"><div class="note">資生堂 ばら園のページをご覧になるにはFlash Playerが必要です。<br>最新のFlash Playerを入手するには、左のダウンロードボタンをクリックしてください。<div></td>'
		+ '<td width="105"><a href="product.htm" target="_blank"><img src="img/top_b_html.gif" width="105" height="12" border="0" alt="商品一覧［HTML版］">'
		+ '</td>'
		+ '</tr>'
		+ '</table>';
		document.write(alternateContent);  // Flash 以外のコンテンツを挿入する
	}
}
