<!--
/***************************************************************
* http://yawoong.com/board/view.php?id=tutorial_kidari70&no=115
* ¹Ýµå½Ã ¿ÜºÎ¿¡¼­ »ý¼ºµÈ ¼Ò½º¸¦ È£ÃâÇØ¾ßÇÔ 
* _swfFile ÆÄÀÏ¸í 
* _width  Æø
* _height  ³ôÀÌ
* _bgcolor ¹è°æ»ö
***************************************************************/
function flashShow(_swfFile,_width,_height)
{
    document.write("<object"); 
    document.write('classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ');
    document.write('codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ');
    document.write('width="'+_width+'" height="'+_height+'" ');
    document.write('id="'+_swfFile+'" ');
    document.write('align="middle">');
    document.write('<param name="movie" value="'+_swfFile+'" />');
    document.write('<param name="quality" value="high" />');
    document.write('<param name="wmode" value="transparent" />');
    document.write("<embed ");
    document.write('src="'+_swfFile+'" ');
    document.write('quality="high" ');
    document.write('wmode="transparent" ');
    document.write('width="'+_width+'" height="'+_height+'" ');
    document.write('name="'+_swfFile+'" ');
    document.write('align="middle" ');
    document.write('allowScriptAccess="sameDomain" ');
    document.write('type="application/x-shockwave-flash" ');
    document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" />');
    document.write("</object>");
}
// -->
