// µÚ°¡ ºñÄ¡´Â Åõ¸í¹öÁ¯
function flashview (dirNswf,fwidth,fheight,params) {
 var flashobjec="";
 flashobjec+="  <object classid=\'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\' codebase=\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\' width=\'"+fwidth+"\' height=\'"+fheight+"\'>";
 flashobjec+="      <param name=\'movie\' value=\'"+dirNswf+"\'>";
 flashobjec+="      <param name=\'wmode\' value=\'transparent\'>";
 flashobjec+="      <param name=\'quality\' value=\'high\'>";
 flashobjec+="      <param name=\'menu\' value=\'false\'>";
 flashobjec+="      <embed src=\'"+dirNswf+"\' width=\'"+fwidth+"\' height=\'"+fheight+"\' quality=\'high\' pluginspage=\'http://www.macromedia.com/go/getflashplayer\' type=\'application/x-shockwave-flash\' menu=\'false\'></embed>";
 flashobjec+="    </object>";

 document.write(flashobjec);
}


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


/* Åõ¸ípng  ½ºÅ©¸³Æ® */

    function setPng24(obj) {
        obj.width=obj.height=1;
        obj.className=obj.className.replace(/\bpng24\b/i,'');
        obj.style.filter =
        "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');"
        obj.src='';
        return '';
    }



function resizeIframe(fr) {  // ¾ÆÀÌÇÁ·¹ÀÓ Ã¢ Å©±â ÀÚµ¿ Á¶Àý

 var frmHeight = null;

 var IE = false ;
 if (window.navigator.appName.indexOf("Explorer") !=-1)
 {
  IE = true;
 }

 if (IE)  // ÀÍ½ºÇÁ·Ñ·¯
 {
  var oBody = document.frames("iframe_talk").document.body;
  frmWidth = oBody.scrollWidth;
  frmHeight = oBody.scrollHeight;
 }
 else  // ±âÅ¸, ÆÄÀÌ¾îÆø½º È®ÀÎ
 {
  var oBody = document.getElementById("iframe_talk").contentDocument.body;
  frmWidth = oBody.offsetWidth;
  frmHeight = oBody.offsetHeight;
 }

 fr.height =frmHeight;

} 

