function ajustarAltura(){
  var obj;
  var obj2;
  obj = parent.document.getElementById("centro");
  if(obj == null) //testa se a página visitada está no iframe
    window.location.href = 'index.php';
  obj2 = document.getElementById("TabelaPrincipal");
  obj.height = obj2.scrollHeight + 20;
//  alert(obj2.scrollHeight);
  parent.window.scrollTo(0, 0);
//  alert(parent.window.pageYOffset);
}
window.onload = ajustarAltura;

//funcoes da pagina
function mostraOculta(origem, modelo){
  objOrigem = document.getElementById(origem);
	objModelo = document.getElementById(modelo);
  if(objOrigem.style.display == "none")
    objOrigem.style.display = objModelo.style.display;
  else
    objOrigem.style.display = "none";
  ajustarAltura();
}
