﻿function reSize() {
    try {
        var objBody = auto_iframe.document.body;
		var objBody2 = auto_iframe2.document.body;
        var objFrame = document.getElementById("auto_iframe")[0];
		var objFrame2 = document.getElementById("auto_iframe2")[1];
        ifrmHeight = objBody.scrollHeight; + (objBody.offsetHeight - objBody.clientHeight);
		ifrmHeight2 = objBody2.scrollHeight; + (objBody2.offsetHeight - objBody2.clientHeight);
        objFrame.style.height = ifrmHeight;
		objFrame2.style.height = ifrmHeight2;
    }
        catch(e) {}
}

function init_iframe() {
    reSize();
    setTimeout('init_iframe()',1)
}

init_iframe();

document.write("<iframe src='http://forum.chosun.com/loginBox.jsp?ret_url=" + escape(document.location) + "' width=280 height=89 allowTransparency='true' name='auto_iframe' id='auto_iframe' marginwidth=0 marginheight=0 hspace=0 vspace=0 scrolling=no frameborder=0></iframe>");

document.write("<iframe src='http://forum.chosun.com/right/2011/sub/index.html' width='280' height='2450' allowTransparency='true' name='auto_iframe2' id='auto_iframe2' marginwidth=0 marginheight=0 hspace=0 vspace=0 scrolling=no frameborder=0></iframe>");
