
function reSize() {
    try {
        var objBody = auto_iframe.document.body;
        var objFrame = document.all["auto_iframe"];
        ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
        objFrame.style.height = ifrmHeight;
    }
        catch(e) {}
}

function init_iframe() {
    reSize();
    setTimeout('init_iframe()',1)
}

init_iframe();

//<iframe src="map-seasia.htm" width="640" height="600" frameborder="0" framespacing="0" name="ifrm" id="auto_iframe" scrolling="no"></iframe>

// ´Ù¸¥¹æ¹ý
//iframe ÀÇ ´ë»óÀÌ µÇ´ÂÆÄÀÏ¿¡ ´ÙÀ½ÀÇ ³»¿ëÀ» ¹®¼­ ³¡¿¡ ³Ö¾îÁÖ¼¼¿ä...

//<script>
//self.resizeTo(document.body.scrollWidth , document.body.scrollHeight + 10);
//</script>
