
//フラッシュ

var swfVersion="8";
var swfDirectory="./"

var VBflash="ShockwaveFlash.ShockwaveFlash."+swfVersion;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if (plugin){
	plugin = parseInt(plugin.description.match(/\d+\.\d+/)) >= swfVersion;
}else{
	document.write('<script language=VBScript>\n');
	document.write('on error resume next\n');
	document.write('plugin=(IsObject(CreateObject(VBflash)))\n');
	document.write('</script\>');
}

function showSwf(){
	if (plugin){
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+swfWidth+'" height="'+swfHeight+'">');
		document.write('<param name="movie" value="'+ swf +'" /><param name="loop" value="true" /><param name="quality" value="high" /><param name="base" value="'+swfDirectory+'">');
		document.write('<embed src="'+ swf +'" base="'+swfDirectory+'" loop="true" quality="high" swLiveConnect="false" width="'+swfWidth+'" height="'+swfHeight+'" type="application/x-shockwave-flash"></embed>');
		document.write('</object>');
	}else{
		document.write('<p style="width:950px; height:230px; text-align:center; margin-top:228px;">最新のFLASHプレイヤーがインストールされていません。<br/>正しくご覧になるには、最新のFLASHプレーヤーをインストールしてご覧ください。<br /><a href="http://get.adobe.com/jp/flashplayer/" target="_blank" style="display:block; padding-top:10px;width:75px;"><img src="/fischer/images/footer_bnr_flash02.gif" width="79" height="17" alt="Flash Player" /></a></p>');
	}
}

