/************************　FlashPlayerPlugin判定　Copyright (C) 2004 Cyber Works Inc.　Copyright (C) 2004 Information Media Design Inc.************************///■設定変更項目▼▼▼▼▼//▽現行最新のFlashPlayerのバージョン	nNewplg = 7;//▽制限バージョンの指定	nBanv = 4;	//▽制限バージョンで閲覧時のリダイレクトページ指定（相対パス可）	sNoplg = 'index_h.html';//■スクリプト本文（変更必要なし）var nFlapv = 0;var sPlgname = "application/x-shockwave-flash";if(navigator.mimeTypes && 	navigator.mimeTypes[sPlgname] && 	navigator.mimeTypes[sPlgname].enabledPlugin){	nFlapv = navigator.plugins["Shockwave Flash"].description.match(/\d+/);}else if(navigator.userAgent && 	(navigator.userAgent.indexOf("MSIE") > -1) &&	(navigator.userAgent.indexOf("Win") > -1)){	document.write('<script type="text/vbscript" language="VBScript"\>\n');	document.write('Private i,b\n');	document.write('On Error Resume Next\n');	document.write('For i = '+ nNewplg +' To 1 Step -1\n');	document.write('b = (IsObject (CreateObject ("ShockwaveFlash.ShockwaveFlash." & i)))\n');	document.write('If b Then \n');	document.write('nFlapv = i\n');	document.write('Exit For\n');	document.write('End If\n');	document.write('Next\n');	document.write('</script\>');}nFlapv=parseInt(nFlapv);if (nFlapv <= nBanv) {	location.replace(sNoplg);}