function reajusta()
    {
                    if(document.getElementById('corpo'))
                    	{
                            //alert("norma"+document.frames['corpo'].document.body.scrollHeight);
                        		if(document.frames['corpo'].document.body.scrollHeight>373)

                    				{

                    				document.getElementById('corpo').style.height=document.frames['corpo'].document.body.scrollHeight;
                                    document.getElementById('spacer2').style.height=document.frames['corpo'].document.body.scrollHeight-document.getElementById('frmcorpo').offsetHeight+10-48;

                    				}

                    			else
                    				{

                    				//document.getElementById('spacer2').style.height=0;
                    				document.getElementById('corpo').style.height=373;
                    				document.getElementById('spacer2').style.height=373-document.getElementById('frmcorpo').offsetHeight+10-48;
                    				}

                    	}
                    else if(parent.document.getElementById('corpo'))
                    	{
                            //alert("norma"+parent.document.frames['corpo'].document.body.scrollHeight);
                        		if(parent.document.frames['corpo'].document.body.scrollHeight>373)

                    				{

                    				parent.document.getElementById('corpo').style.height=parent.document.frames['corpo'].document.body.scrollHeight;
                                    parent.document.getElementById('spacer2').style.height=parent.document.frames['corpo'].document.body.scrollHeight-parent.document.getElementById('frmcorpo').offsetHeight+10-48;

                    				}

                    			else
                    				{

                    				//document.getElementById('spacer2').style.height=0;
                    				parent.document.getElementById('corpo').style.height=373;
                    				parent.document.getElementById('spacer2').style.height=373-parent.document.getElementById('frmcorpo').offsetHeight+10-48;
                    				}

                    	}
}
setInterval('reajusta()', 2000);
