function RunFlash()
{
htm = ""
htm+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
htm+="        codebase='http://download.macromedia.com/pub/shockwave/"
                  htm+="cabs/flash/swflash.cab'"
htm+="        width   = 720 " 
htm+="        height  = 288 >"
htm+="<param  name    = movie value='demo.swf'>"
htm+="<param  name    = quality value=high>"
htm+="<param  name    = menu    value='false'>"
htm+="<param  name    = devicefont value='true'>"
htm+="<param  name    = bgcolor value='#ffffff'>"
htm+="<embed  src     = 'demo.swf' "
htm+="        quality = high  "
htm+="        width   = 720"
htm+="        height  = 288"
htm+="        menu= false" 
htm+="        devicefont= true" 
htm+="        bgcolor= #ffffff"
htm+="        type    = 'application/x-shockwave-flash' "
htm+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
htm+="</embed>"
htm+="</object>"

document.write(htm)

}

