function writeFlashOld(moviPath,movieWidth,movieHight) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/ swflash.cab#version=9,0,28,0"');
	document.write(' id="mainflash" align="middle" width="'+movieWidth+'" height="'+movieHight+'" style="z-index:-99;">');
	document.write('<param name=movie value="'+moviPath+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="bgcolor" value="#ffffff">');
	document.write('<param name="FlashVars" value="loc=ja_JP">');
	document.write('<param name="WMODE" value="Transparent" />');
	document.write('<embed src="'+moviPath+'" quality=high bgcolor="#ffffff" style="z-index:-99;"');
	document.write(' pluginspage="http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"');
	document.write(' type="application/x-shockwave-flash" width="'+movieWidth+'" height="'+movieHight+'" name="main" align="middle" wmode="transparent" >');
	document.write('</embed>');
	document.write('</object>');
}

writeFlashOld('./main.swf','100%','100%');

