var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // 使用可能なバージョンが検出された場合
		// Flash ムービーの埋め込み
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
		'width', '480',
		'height', '520',
		'src', 'testplay',
		'quality', 'high',
		'pluginspage', 'http://www.adobe.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'true',
		'scale', 'showall',
		'wmode', 'window',
		'devicefont', 'false',
		'id', 'testplay',
		'bgcolor', '#ffffff',
		'name', 'testplay',
		'menu', 'false',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', 'testplay',
		'salign', ''
		); //end AC code
} else {  // Flash が古すぎるか、プラグインを検出できません
	var alternateContent = '<img src="img/flash.jpg" width="470" height="520" alt="" />';
	document.write(alternateContent); 
}

