/********1*********2*********3*********4*********5*********6*********7*********8
 * Method : loadFlash
 * Desc   : Flashアクティブ化用関数
 * Input  : strFlash   SWFファイルのパスを指定
 *        : nWidth     SWFファイルの表示サイズ長を指定
 *        : nHeight    SWFファイルの表示サイズ高を指定
 * Return : None
 ********1*********2*********3*********4*********5*********6*********7*********/
function loadFlash( strFlash, width, height )
{
	document.write('<OBJECT type="application/x-oleobject"' );
	document.write(' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' );
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
	document.write(' width="' + width + '"');
	document.write(' height="' + height + '"');
	document.write('>' );
	document.write('<PARAM name="movie" value="' + strFlash + '">' );
    document.write('<PARAM name="loop" value="true">');
    document.write('<PARAM name="menu" value="false">');
	document.write('<PARAM name="quality" value="high">' );
	document.write('<PARAM name="bgcolor" value="#FFFFFF">' );
	document.write('<EMBED src="' + strFlash + '"' );
	document.write(' quality="high"' );
	document.write(' menu="false"' ); 
	document.write(' loop="true"' );
	document.write(' bgcolor="#FFFFFF"' );
	document.write(' width="' + width + '"' );
	document.write(' height="' + height + '"' );
	document.write(' type="application/x-shockwave-flash"' );
	document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer">' );
	document.write('</EMBED>');
	document.write('</OBJECT>');
}
