function kpzFlash(url, width, height)
{
  var player_name = "movie";

  document.write(  '<div style="z-index:0; padding:0px">'
                 + '<object classid  = "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
                 +        ' codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,16,0"'
                 +        ' id       = "' + player_name + '"'
                 +        ' width    = "' + width + '"'
                 +        ' height   = "' + height + '">'
                 +     '<param name = "movie"   value = "' + url + '">'
                 +     '<param name = "quality" value = "high"       >'
                 +     '<param name = "wmode"   value = "transparent">'
                 +   '<embed src         = "' + url + '"'
                 +         ' pluginspage = "http://www.macromedia.com/go/getflashplayer"'
                 +         ' name        = "' + player_name + '"'
                 +         ' quality     = "high"'
                 +         ' type        = "application/x-shockwave-flash"'
                 +         ' width       = "' + width + '"'
                 +         ' height      = "' + height + '"'
                 +         ' bgcolor     = "#000000"'
                 +         ' wmode       = "transparent">'
                 +   '</embed>'
                 + '</object>'
                 + '</div>');
}
