//フラッシュ読み込み ショップ用

	var width = 800; //横幅
	var height = 320; //縦
	var path= "./main.swf" //フラッシュの設置場所（相対パスの場合、設置するHTMLファイルから見てです）
	var backcolor = "#000000"; //背景色の指定　透過表示（wmodeをtransparent）　にする場合は無効になります。	

document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'")
document.write(" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0")
document.write("flash/swflash.cab'")
document.write(" width=",width," height=",height,">")
document.write("<param name=movie value='",path,"'>")
document.write("<param name=quality value=high>")
document.write("<param name=bgcolor value=",backcolor,">")
//document.write("<param name=wmode value=transparent>")
document.write("<embed src='",path,"' quality=high ")
//document.write(" wmode=transparent ")
document.write(" width=",width," height=",height,"")
document.write(" bgcolor=",backcolor,"")
document.write(" type='application/x-shockwave-flash' ")
document.write("pluginspage='http://www.macromedia.com/go/getflashplayer'>")
document.write("</embed>")
document.write("</object>")