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