function selfecha($ctrl, $idioma, $path)
{
    $fecha = document.getElementById($ctrl).value;
    $pag= $path+'/fechas/selfecha.php?ct=' + $ctrl +'&id='+$idioma;
    if ($fecha!='') $pag = $pag + '&d='+$fecha;
    window.open($pag,'',
                'scrollbars=no,resizable=yes,width=215,height=175');
}


function iluminar(obj, color)
{
  fila = obj;

  for (i=0; ele = fila.getElementsByTagName('td')[i]; i++)
      ele.style.background = color;
}


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