////////////////////////////////////////////
//FLASH 表示 クラス
//引　数：swfへのパス,swfの横幅,swfの高さ
//戻り値：なし
////////////////////////////////////////////

//コンストラクタ
function putFlash(swfUrl,swfWidth,swfHeight){
	this.url = swfUrl;
	this.w = swfWidth;
	this.h = swfHeight;
	this.writeCode = putCode;
}

//コード生成メソッド
function putCode(){
	var srcCode = ""
	srcCode+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
	srcCode+=" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab'"
	srcCode+=" width =" + this.w
	srcCode+=" height =" + this.h + ">"
	srcCode+="<param name = movie value=" + this.url + ">"
	srcCode+="<param name = quality value=high>"
	srcCode+="<embed src =" + this.url + " quality = high"
	srcCode+=" width =" + this.w
	srcCode+=" height =" + this.h
	srcCode+=" type = 'application/x-shockwave-flash'"
	srcCode+=" pluginspage='http://www.macromedia.com/go/getflashplayer'>"
	srcCode+="</embed>"
	srcCode+="</object>"
	document.write(srcCode);
}

