<!--
 function wait(id){
    var newheight=document.getElementById(id).contentWindow.document.body.scrollHeight;
    //alert('newheight='+newheight+'id='+id);
    document.getElementById(id).style.height= (newheight + 16) + "px";
    }

    function autosize(id){ setTimeout("wait('"+id+"');",100);
        var newheight;  //alert(document.getElementById(id)).height.value;
        if (navigator.appName != "Microsoft Internet Explorer" && !window.opera && !document.mimeType && document.all && document.getElementById){
            newheight=document.getElementById(id).contentWindow.document.body.offsetHeight;  alert(newheight);
        }else if(document.getElementById){
            //newheight=document.frames(id).document.body.scrollHeight;
            newheight=document.getElementById(id).contentWindow.document.body.scrollHeight;
            //alert(newheight);
            //alert(document.getElementById(id).contentWindow.document.body.offsetHeight);
        }
        //if(id=='MAIN_IFRAME') document.getElementById(id).style.height= (999 + 16) + "px";

    }
//window.onresize=autosize('MAIN_IFRAME');
//-->


