function grand(h, ifr){
  bodyIframe = document.getElementById(ifr);
  bodyIframe.height = h;
}

function ajusta(ifr){
  altura = document.body.scrollHeight;
  top.grand(document.body.scrollHeight, ifr);
}

function autoajusta(ifr){
  if(navigator.vendor=='Apple Computer, Inc.'){
    altura=0;
    top.grand(0, ifr);
    mytime=setTimeout('ajusta("'+ifr+'")', 200);
  }else{
    altura=0;
    top.grand(0, ifr);
    ajusta(ifr);
  }
}
