﻿//■ Flash Movie //
function loadSwf(path, width, height){
	// 指定方法
	// <script type="text/javascript">loadSwf('swfのファイルパス', '横幅[px]', '高さ[px]');</script>

	if(!path || !width || !height){ return false; }
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" align="" bgcolor="#ffffff">');
	document.write('<param name=movie value="'+path+'">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<embed src="'+path+'" wmode="transparent" quality="high"  width="'+width+'" height="'+height+'" bgcolor="#ffffff" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	document.write('</object>');
}
