function getAltura()
{
  var altura = 0;
  
  if(typeof(window.innerHeight) == 'number')
  {
    //Non-IE
    altura = window.innerHeight;
  } else if(document.documentElement && document.documentElement.clientHeight)
  {
   	//IE 6+ in 'standards compliant mode'
    altura = document.documentElement.clientHeight;
  } else if(document.body && document.body.clientHeight)
  {
    //IE 4 compatible
    altura = document.body.clientHeight;
  }
  
  return altura;
}

function ajustaTamanho()
{
	altura = getAltura();
	altCorpo = document.getElementById("corpo").offsetHeight;

	if(altCorpo > (altura - 140))
	{
		vA = altCorpo + 2*31;
	}
	else
	{
		vA = altura - 140;
	}
	
	document.getElementById("lateral_esquerda").style.height = vA + 'px';
	document.getElementById("lateral_direita").style.height = vA + 'px';

	largura = document.getElementById("tudo").offsetWidth;
	largCorpo = document.getElementById("corpo").offsetWidth;
	vL = largura - 300;

	//if(largCorpo < vL)
	//{
		document.getElementById("corpo").style.width = vL + 'px';
		//document.getElementById("dnn_ContentPane").style.width = vL + 'px';
	//}
}
