// JavaScript Document
/*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   = 160 " 
htm+="        height  = 120 >"
htm+="<param  name    = movie value='./samplegallery/mov/samplemovie.swf'>"
htm+="<param  name    = quality value=high>"
htm+="<embed  src     = './samplegallery/mov/samplemovie.swf' "
htm+="        quality = high  "
htm+="        width   = 160"
htm+="        height  = 120"
htm+="        type    = 'application/x-shockwave-flash' "
htm+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
htm+="</embed>"
htm+="</object>"

document.write(htm)*/


function writeFlash( swf , width , height )
{
  var 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   = " + width
  htm+="        height  = " + height + ">"
  htm+="<param  name    = movie value=" + swf + ">"
  htm+="<param  name    = quality value=high>"
  htm+="<embed  src     = " + swf + " "
  htm+="        quality = high  "
  htm+="        width   = "+ width
  htm+="        height  = " + height
  htm+="        type    = 'application/x-shockwave-flash' "
  htm+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
  htm+="</embed>"
  htm+="</object>"
  
  document.write(htm)
}
