// -----------------------------------------------------------------------------
// グローバル
// Flash のメジャーバージョンが必要です
var requiredMajorVersion = 6;
// Flash のマイナーバージョンが必要です
var requiredMinorVersion = 0;
// 必要な Flash のバージョン
var requiredRevision = 0;
// サポートされている JavaScript のバージョン
var jsVersion = 1.1;
// Flashのプラグインチェック
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

// 使用可能なバージョンが検出された場合
if(hasRightVersion) {
	var oeTags =  '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">'
	+ '<tr>'
	+ '<td align="center" valign="middle">'
	+ '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="400" height="400" id="entrance" align="top">'
	+ '<param name="allowScriptAccess" value="sameDomain">'
	+ '<param name="movie" value="entrance.swf">'
	+ '<param name="loop" value="false">'
	+ '<param name="quality" value="high">'
	+ '<param name="scale" value="noscale">'
	+ '<param name="salign" value="lt">'
	+ '<param name="bgcolor" value="#ffffff">'
	+ '<embed src="entrance.swf" loop="false" quality="high" scale="noscale" salign="lt" bgcolor="#ffffff" width="400" height="400" name="entrance" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">'
	+ '</embed>'
	+ '</object>'
	+ '</td>'
	+ '</tr>'
	+ '</table>';
	// Flash ムービーの埋め込み
	document.write(oeTags);
}else{
	// Flash が古すぎるか、プラグインを検出できません
	var alternateContent =  '<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">'
		+ '<tr>'
		+ '<td align="center" valign="middle">'
		+ '<table width="500" height="570" border="0" cellpadding="0" cellspacing="0" background="notice.gif">'
		+ '<tr>'
		+ '<td colspan="3" width="500" height="237"><img src="spacer.gif" width="500" height="237" border="0"></td>'
		+ '</tr>'
		+ '<tr>'
		+ '<td width="162" height="31"><img src="spacer.gif" width="162" height="31" border="0"></td>'
		+ '<td width="88" height="31">'
		+ '<a href="http://www.adobe.com/go/getflashplayer" target="_blank" alt="Get Adobe Flash Player"><img class="GetPlugin" src="get_flash_player.gif" width="88" height="31" border="0"></a>'
		+ '</td>'
		+ '<td width="250" height="31"><img src="spacer.gif" width="250" height="31" border="0"></td>'
		+ '</tr>'
		+ '<tr>'
		+ '<td colspan="3" width="500" height="302"><img src="spacer.gif" width="500" height="302" border="0"></td>'
		+ '</tr>'
		+ '</table>'
		+ '</td>'
		+ '</tr>'
		+ '</table>';
	document.write(alternateContent);
}