// ¾ÆÀÌÇÁ·¹ÀÓ ¸®»çÀÌÁî
function resizeFrame(){
	var oBody = document.all["ifrm"].document.body;
	var oFrame = document.all["ifrm"];
	oFrame.style.height = parseInt(oBody.scrollHeight + (oBody.offsetHeight-oBody.clientHeight)) - 200;
	document.all.ifrm.height = parseInt(oFrame.style.height);
}

function resizeIFrame(iframeObj){
        var innerBody = iframeObj.contentWindow.document.body;
        oldEvent = innerBody.onclick;
        //innerBody.onclick = function(){ resizeFrame(iframeObj, 1);oldEvent; };

        /* ³ôÀÌ ´Ù½Ã¼³Á¤ */
        var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
        iframeObj.style.height = innerHeight;

/*---------- ³ÐÀÌµµ ÇÔ²² ÀÚµ¿Á¶Á¤µÇ¾ß ÇÑ´Ù¸é ÁÖ¼®À» Ç®¾îÁÖ¼¼¿ä~--------------------------------
        // ³ÐÀÌ ´Ù½Ã¼³Á¤ 
        var innerWidth = innerBody.scrollWidth + (innerBody.offsetWidth - innerBody.clientWidth);
        iframeObj.style.width = innerWidth;     
---------------------------------------------------------------------------------------------------*/
        if( !arguments[1] )        /* Æ¯Á¤ ÀÌº¥Æ®·Î ÀÎÇÑ È£Ãâ½Ã ½ºÅ©·ÑÀ» ±×³É µÐ´Ù. */
                this.scrollTo(1,1);
}
