<!-- 
function autoResize(id){ 
    var newheight; 
    if(top.document.getElementById){ 
        newheight=top.document.getElementById(id).contentWindow.document .body.scrollHeight; 
    } 
    top.document.getElementById(id).height= (newheight) + "px"; 
} 
//-->