<!--
//ifram »çÀÌÁî Á¶Á¤
function resizeFrame(iframeObj){
var innerBody = iframeObj.contentWindow.document.body;

var innerHeight = innerBody.scrollHeight + (innerBody.offsetHeight - innerBody.clientHeight);
var innerWidth = innerBody.scrollWidth + (innerBody.offsetWidth - innerBody.clientWidth);

iframeObj.style.height = innerHeight;
iframeObj.style.width = innerWidth;

// this.scrollTo(1,1);
// ¡è Å¬¸¯½Ã È­¸é ¸ÇÀ§·Î °¡´Â Çö»ó¶§¹®¿¡ Àú´Â ÁÖ¼®Ã³¸®Çß½À´Ï´Ù.


}
//-->
