/*
flvURL: flvのURL（必須・デフォルト値''）
imageURL: プレイヤの上に表示する画像のURL（デフォルト値''）
size: プレイヤのサイズ（'s'or'l'・デフォルト値's'）
autoPlay: SWFのロード完了後自動的に再生するかの真偽値（デフォルト値'false'）
autoSoundOn: SWFのロード完了後に音をONにするかの真偽値（デフォルト値'false'）
hideSoundButton: サウンドのON/OFFボタンを表示するかの真偽値（デフォルト値'false'）
*/

function embedSwf(aId, aPath, width, height, flvURL, imageURL, size, autoPlay, autoSoundOn, hideSoundButton) {
	var emsrc ="";
	var fvsSrc ="";
	
	//flash-vars
	fvsSrc +="&flvURL=" +flvURL;
	fvsSrc +="&imageURL=" +imageURL;
	fvsSrc +="&size=" +size;
	fvsSrc +="&autoPlay=" +autoPlay;
	fvsSrc +="&autoSoundOn=" +autoSoundOn;
	fvsSrc +="&hideSoundButton=" +hideSoundButton;
	
	//object
	emsrc +="<object";
	emsrc +=" classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'";
	emsrc +=" codebase='https://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0'";
	emsrc +=" id='" +aId +"'";
	emsrc +=" width='" +width +"' height='"+height +"' align='middle'";
	emsrc +=">";
	emsrc +="<param name='quality' value='high' />";
	emsrc +="<param name='allowScriptAccess' value='sameDomain' />";
	emsrc +="<param name='bgcolor' value='#ffffff' />";
	emsrc +="<param name='movie' value='" +aPath +"' />";
	emsrc +="<param name=FlashVars value='" +fvsSrc +"' />";
	
	//embed
	emsrc +="<embed";
	emsrc +=" name='" +aId +"'";
	emsrc +=" pluginspage='https://www.adobe.com/go/getflashplayer'";
	emsrc +=" type='application/x-shockwave-flash'";
	emsrc +=" quality='high'";
	emsrc +=" width='" + width +"' height='" + height + "'";
	emsrc +=" src='" +aPath +"'";
	emsrc +=" FlashVars='" +fvsSrc +"'";
	emsrc +=">";
	emsrc +="</embed>";
	
	emsrc +="</object>";
	
	document.write(emsrc);
	document.close();
}

