﻿//flashの透明での書き出し。
//IE6の場合wmode= transparentを入れないとフレームルートが遅延します。ご注意あれ！

html = ""
html+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
html+="        codebase='http://download.macromedia.com/pub/shockwave/"
                  html+="cabs/flash/swflash.cab'"
html+="        width   = 122 " 
html+="        height  = 62 >"
html+="<param  name    = movie value='images/bh_banner.swf'>"
html+="<param  name    = quality value=high>"
html+="<param  name	   = wmode value='transparent'>"
html+="<embed  src     = 'images/bh_banner.swf' "
html+="        quality = high  "
html+="        width   = 122"
html+="        height  = 62"
html+="        wmode   = transparent"
html+="        type    = 'application/x-shockwave-flash' "
html+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
html+="</embed>"
html+="</object>"

document.write(html)


