function adjustIFrameSize(){
var oBody= Marcoprincipal.document.body;

    navegador=navigator.userAgent;
    esIE=navegador.indexOf("MSIE");

    if(esIE > -1)
    {
     oFrame= document.all("Marcoprincipal").style;
         oFrame.height='1px';
         oFrame.height = oBody.scrollHeight + (oBody.offsetHeight - oBody.clientHeight)+60;
        if (oBody.scrollHeight < 300)
        {
                oFrame.height = 300;

        }
 }
 else
 {
     oFrame= document.getElementById("Marcoprincipal").style;
     oFrame.height='1px';
     oFrame.height = oBody.offsetHeight+60+'px';

     //document.getElementById("todo").style.top = '2%';
     //document.getElementById("todo").style.marginTop = '0';

     if (oBody.scrollHeight < 300)
        {
                oFrame.height = '350px';
        }
 }
 parent.scrollTo(1,1);


}
