//========================================================================//
// ÀÌ¿Ã¶ó½º¹®Á¦ ÇØ°á°Ç                                                 //
// @(ÁÖ)¿ô±ä´ëÇÐÀç´Ü
// @±èº´¼º
// @http://www.humoruniv.com
// @create date 2007.03.06
// @last modify 2008.01.10
// 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("<param name='wmode' value='transparent'>");
  document.write("<embed src='" + sObjSrc + "' ");
  document.write("quality='high' ");
  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>");
	}
}