/*
   Funciones javascript para ILF 

   Nova Comunicación. http://www.internorma.com 

*/

/*--------------------------------------------------------------------*/
/* Variables de uso común. */
/* Common use variables. */


/*--------------------------------------------------------------------*/
/* Iniciar los valores de CSS. */

function ajustarcuerpo()
{
  var ancho= document.body.clientWidth - 240;
  var alto= document.body.clientHeight - 136;
  document.getElementById("cuerpo").style.minWidth= ancho.toString()+"px";
  document.getElementById("cuerpo").style.maxWidth= ancho.toString()+"px";
  document.getElementById("cuerpo").style.minHeight= alto.toString()+"px";
  document.getElementById("cuerpo").style.maxHeight= alto.toString()+"px";

}


