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


function abresugerencias(URL) {
   var ample=500;
   var alt=380;
   var izquierda = (screen.availWidth - ample) / 2;
   var arriba = (screen.availHeight - alt) / 2;
   window.open(URL,'','top='+arriba+',left='+izquierda +',scrollbars=yes,resizable=no,width='+ample+',height='+alt);
}

function abreryder(URL) {
   var ample=500;
   var alt=380;
   var izquierda = (screen.availWidth - ample) / 2;
   var arriba = (screen.availHeight - alt) / 2;
   window.open(URL,'','top='+arriba+',left='+izquierda +',scrollbars=yes,resizable=no,width='+ample+',height='+alt);
}

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;
}
