<!--
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,24,0',
			'width', '645',
			'height', '183',
			'src', 'top_right',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'window',
			'devicefont', 'false',
			'id', 'top_right',
			'bgcolor', '#ffffff',
			'name', 'top_right',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', 'swf/top_right',
			'salign', 'lt'
			); //end AC code
	} else {  // Flash が古すぎるか、プラグインを検出できません
		var alternateContent = '<ul class="nonFlash">'
			+ '<li><h2><a href="outline/index.html"><img src="img_btn/btn_flash01.jpg" alt="行政・市の概要" width="165" height="63" /></a></h2><div><img src="swf/photo01.jpg" alt="" width="142" height="108" /></div></li>'
			+ '<li><h2><a href="life/index.html"><img src="img_btn/btn_flash02.jpg" alt="くらしの情報" width="160" height="63" /></a></h2><div><img src="swf/photo02.jpg" alt="" width="142" height="108" /></div></li>'
			+ '<li><h2><a href="business/index.html"><img src="img_btn/btn_flash03.jpg" alt="産業・ビジネス" width="159" height="63" /></a></h2><div><img src="swf/photo03.jpg" alt="" width="142" height="108" /></div></li>'
			+ '<li><h2><a href="sightseeing/index.html"><img src="img_btn/btn_flash04.jpg" alt="観光・レジャー" width="161" height="63" /></a></h2><div><img src="swf/photo04.jpg" alt="" width="142" height="108" /></div></li>'
			+ '</ul>'
			+ 'このコンテンツには Adobe Flash Player が必要です。 '
            + '<a href=http://www.macromedia.com/go/getflash/>Flash Player を入手する</a>';
		document.write(alternateContent);  // Flash 以外のコンテンツを挿入する
	}
}
// -->

