<!--
 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){
        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;
        }
        //if(id=='MAIN_IFRAME') document.getElementById(id).style.height= (999 + 16) + "px";
        setTimeout("wait('"+id+"');",10);
    }
//window.onresize=autosize('MAIN_IFRAME');
//-->


