function reSize() {
        try{
        var objBody = ifrm.document.body;
        var objFrame = document.all["index"];
        ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight);
        
        if (ifrmHeight > 100) {
                objFrame.style.height = ifrmHeight
        }else{
                objFrame.style.height = 500;
        }
        objFrame.style.width = '480'
        }catch(e){}
}
function init_index() {
        reSize();
        setTimeout('init_index()',200)
}
init_index();

