// JavaScript Document

function FullWin(opn) {
var options;

    if (navigator.appName.charAt(0)=='M')
        options = "fullscreen=1,scrollbars=0";
    else if (navigator.appName.charAt(0)=='N')
        options = "scrollbars=0,left=0,top=0,location=0,resizable=0,status=0"
                + ",width=" + screen.width
                + ",height=" + screen.height;

    window.open(opn, "", options);
}

function loadSwf(){
document.write('<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%">');
document.write('	<param name="movie" value="index.swf" />');
document.write('	<param name="quality" value="high" />');
document.write('	<param name="wmode" value="opaque" />');
document.write('	<param name="swfversion" value="9.0.45.0" />');
document.write('	<!-- このパラメータタグにより、Flash Player 6.0 または 6.5 以降を使用して、Flash Player の最新バージョンをダウンロードするようメッセージが表示されます。ユーザにメッセージを表示させないようにする場合はパラメータタグを削除します。 -->');
document.write('	<param name="expressinstall" value="share/Scripts/expressInstall.swf" />');
document.write('	<param name="swLiveConnect" value="true" />');
document.write('	<!-- 次のオブジェクトタグは IE 以外のブラウザで使用するためのものです。IE では IECC を使用して非表示にします。 -->');
document.write('	<!--[if !IE]>-->');
document.write('	<object type="application/x-shockwave-flash" data="index.swf" width="100%" height="100%">');
document.write('		<!--<![endif]-->');
document.write('		<param name="quality" value="high" />');
document.write('		<param name="wmode" value="opaque" />');
document.write('		<param name="swfversion" value="9.0.45.0" />');
document.write('		<param name="expressinstall" value="share/Scripts/expressInstall.swf" />');
document.write('		<param name="swLiveConnect" value="true" />');
document.write('		<!-- ブラウザには、Flash Player 6.0 以前のバージョンを使用して次の代替コンテンツが表示されます。 -->');
document.write('		<div>');
document.write('			<h4>このページのコンテンツには、Adobe Flash Player の最新バージョンが必要です。</h4>');
document.write('			<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Adobe Flash Player を取得" width="112" height="33" /></a></p>');
document.write('		</div>');
document.write('		<!--[if !IE]>-->');
document.write('	</object>');
document.write('	<!--<![endif]-->');
document.write('</object>');
}
