function push_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#version=9,0,47,0'"
  setting += " width=" + swf_width + " height=" + swf_height + ">"
  setting += "<PARAM name=MOVIE value=" + swf_Url + ">"
  setting += "<PARAM name=PLAY value=true>"
  setting += "<PARAM name=LOOP value=true>"
  setting += "<PARAM name=QUALITY value=high>"
  setting += "<PARAM name=WMODE value=transparent>"
  setting += "<EMBED src=" + swf_Url + " quality = high " + "width = " + swf_width + " height=" + swf_height
  setting += " wmode='transparent' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'>"
  setting += "</embed>"
  setting += "<IMG alt='BrillianceTokyo' src='images/top.jpg' height=" + swf_height + " width=" + swf_width + ">"
  setting += "</object>"
  document.write(setting);
}


