function TamVert() {
  var Tamanyo = 0;
  if (typeof window.innerHeight != 'undefined')
  {
    Tamanyo = window.innerHeight;
  }
  else if (typeof document.documentElement != 'undefined'
      && typeof document.documentElement.clientHeight !=
      'undefined' && document.documentElement.clientHeight != 0)
  {
 Tamanyo = document.documentElement.clientHeight;
  }
  else   { document.getElementsByTagName('body')[0].clientHeight;
  }
  return Tamanyo;
}


function redimen(){
	document.getElementById('scrollholder').style.height=TamVert()-180+'px';
	//ScrollLoad ("scrollholder", "scroll", true);
	document.getElementById('barra_inferior').style.top=TamVert()-56+'px';
}
function redimen_agenda(){
	document.getElementById('agenda_seleccion').style.height=TamVert()-180+'px';
	//ScrollLoad ("agenda_seleccion", "scroll", true);
	document.getElementById('agenda_detalle').style.height=TamVert()-180+'px';
	//document.getElementById('agenda_detalle').style.top=-TamVert()+180+'px';
	//ScrollLoad ("agenda_detalle", "scroll2", true);
	document.getElementById('barra_inferior').style.top=TamVert()-56+'px';
	document.body.style.width="10px"; //TamVert()-56+'px';
}
