//¾ÆÀÌÇÁ·¹ÀÓ ¸®»çÀÌÁî function reSize(){ try{ var objBody = ifrm.document.body; var objFrame = document.getElementById('ifrm'); ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight); objFrame.style.height = ifrmHeight; }catch(e){} } function init_iframe(){ reSize(); setTimeout('init_iframe()', 100); } window.onload = function(){ init_iframe(); }