//========================================================================//
// ÀÌ¿Ã¶ó½º¹®Á¦ ÇØ°á°Ç                                                 //
// embed_swf( swf_filepath, width, height, ¹è°æÅõ¸íÀÌ¸é 1, ¾Æ´Ï¸é 0 );
//========================================================================//
function embed_swf( sObjSrc, nWidth, nHeight, sWMode ){
 if(sWMode == 0){
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
  document.write("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'>");
  document.write("<param name='movie' value='" + sObjSrc + "'>");
  document.write("<param name='quality' value='high'>");
  document.write("</object>");
}else{
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
  document.write("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,22,0' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'>");
  document.write("<param name='wmode' value='transparent'>");
  document.write("<param name='movie' value='" + sObjSrc + "'>");
  document.write("<param name='quality' value='high'>");
   document.write("<embed src='" + sObjSrc + "' ");
  document.write("quality='high' wmode='transparent' ");
  document.write("pluginspage='http://www.macromedia.com/go/getflashplayer' ");
  document.write("type='application/x-shockwave-flash' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'></embed> ");
  document.write("</object>");

	}
}
function showFlash(name, width, height, cpos)
{
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
    document.write(' codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"  width=' + width);
    document.writeln(' height=' + height + ' id="' + name + '" align="middle">');
	document.writeln('<param name="movie" value="/2009/flash/' + name + '.swf?pageNum=' + cpos + '" />');
    document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="opaque" />');
    document.writeln('<param name="bgcolor" value="#ffffff" />');
    document.writeln('<embed src="/2009/flash/' + name + '.swf?pageNum=' + cpos + '" quality="high" bgcolor="#ffffff" width="' + width + '" height="' + height + '"'
);
    document.writeln(' name="' + name + '" align= "middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
);
    document.writeln('</object>');
}

function embed_swf2( sObjSrc, nWidth, nHeight ){
  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
  document.write("codebase='http://download.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' ");
  document.write("width='" + nWidth + "' height='" + nHeight + "'>");
  document.write("<param name='movie' value='" + sObjSrc + "'>");
  document.write("<param name='quality' value='high'>");
  document.write("<param name='flashVars' value='MapNum=5&'>");
  document.write("</object>");
}