

/*@***************************************************************************/
/* 1. ÇÁ·Î±×·¥ ID : °øÅëÇÔ¼ö¸ðÀ½                                             */
/* 2. ¸í       Äª : function MakeFlash(strUrl, nWidth, nHeight)              */
/* 3. ±â       ´É : È­¸é¿¡ ÇÃ·¡½Ã¸¦ »ý¼ºÇÑ´Ù.                                */
/* 4. ÀÎ       ¼ö : strUrl - ÇÃ·¡½ÃÆÄÀÏÀÌ Á¸ÀçÇÏ´Â °æ·Î                      */
/*                  nWidth - Å©±â                                            */
/*                  nHeight - ³ôÀÌ                                           */
/* 5. ¸®  ÅÏ   °ª : ¾øÀ½                                                     */
/*@***************************************************************************/
function MakeFlash(strUrl, nWidth, nHeight)
{
  document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="' + nWidth + '" height="' + nHeight + '">');
  document.write('  <param name=movie value="' + strUrl + '">');
  document.write('  <param name=quality value=high>');
  document.write('  <EMBED src="' + strUrl + '" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + nWidth + '" height="' + nHeight + '"></EMBED>');
  document.write('</OBJECT>');
}

