function reSize() {
    try {
        var objBody = auto_iframe.document.body;		
        var objFrame = document.getElementById("auto_iframe")[0];		
        ifrmHeight = objBody.scrollHeight; + (objBody.offsetHeight - objBody.clientHeight);		
        objFrame.style.height = ifrmHeight;		
    }
        catch(e) {}
}

function init_iframe() {
    reSize();
    setTimeout('init_iframe()',1)
}

init_iframe();

document.write(" \
<iframe src='http://issue.chosun.com/common/SR/index.html' width='280' height='2100' allowTransparency='true' name='auto_iframe' id='auto_iframe' marginwidth='0' marginheight='0' hspace='0' vspace='0' scrolling='no' frameborder='0'></iframe> \
");