<!-- 
function reSize(){ 
    try { 
        var objBody = ibody.document.body; 
        var objFrame = document.all["ibody"]; 
        ifrmHeight = objBody.scrollHeight + (objBody.offsetHeight - objBody.clientHeight); 
        //alert(objBody.offsetHeight) 
        if (ifrmHeight > 130) { 
            objFrame.style.height = ifrmHeight 
        }else{ 
            objFrame.style.height = 130; 
        } 
            objFrame.style.width = '100%' 
        } catch(e) { 
        // Do nothing 
    } 
} 
function init_iframe(){ 
    reSize(); 
    setTimeout('init_iframe()',200) 
} 
init_iframe(); 
//--> 


