function flashobject(file,width,height,bgcolor,name) {
     //Flash Object ºÒ·¯¿À±â..
     document.write ("<OBJECT classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' WIDTH='" + width + "' HEIGHT='" + height + "' id='" + name + "'>");
     document.write ("<PARAM NAME='movie' VALUE='" + file + "'>");
     document.write ("<PARAM NAME='Src' VALUE='" + file + "'>");
     document.write ("<PARAM NAME='Quality' VALUE='high'>");
     document.write ("<PARAM NAME='BGColor' VALUE='" + bgcolor + "'>");
     document.write ("<PARAM NAME='WMode' VALUE='Window'>");
     document.write ("<PARAM NAME='Play' VALUE='-1'>");
     document.write ("<PARAM NAME='Loop' VALUE='-1'>");
     document.write ("<PARAM NAME='SAlign' VALUE=''>");
     document.write ("<PARAM NAME='Menu' VALUE='0'>");
     document.write ("<PARAM NAME='Base' VALUE=''>");
     document.write ("<PARAM NAME='AllowScriptAccess' VALUE='always'>");
     document.write ("<PARAM NAME='Scale' VALUE='ShowAll'>");
     document.write ("<PARAM NAME='DeviceFont' VALUE='0'>");
     document.write ("<PARAM NAME='EmbedMovie' VALUE='0'>");
     document.write ("<PARAM NAME='SWRemote' VALUE=''>");
     document.write ("<PARAM NAME='MovieData' VALUE=''>");
     document.write ("<PARAM NAME='SeamlessTabbing' VALUE='1'>");
     document.write ("<EMBED src='" + file + "' quality=high bgcolor='" + bgcolor + "' WIDTH='" + width + "' HEIGHT='" + height + "' NAME='" + name + "' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED>");
     document.write ("</OBJECT>");
}

