function GW_putFlash( swf , width , height )
{
  var source = ""
  source+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
  source+="        codebase='http://download.macromedia.com/pub/shockwave/"
                    source+="cabs/flash/swflash.cab'"
  source+="        width   = " + width
  source+="        height  = " + height + ">"
  source+="<param  name    = movie value=" + swf + ">"
  source+="<param  name    = quality value=high>"
  source+="<embed  src     = " + swf + " "
  source+="        quality = high  "
  source+="        width   = "+ width
  source+="        height  = " + height
  source+="        type    = 'application/x-shockwave-flash' "
  source+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
  source+="</embed>"
  source+="</object>"
  
  document.write(source)
}

