
/*SI SE DESCOMENTA ESTO DEJA DE FUNCIONAR EL FILEMANAGER PORQUE 
INTERFIERE CON EL ONLOAD DE ESA PANTALLA */
/*window.onload = function()
{ if (document.getElementsByTagName) 
  { tables = document.getElementsByTagName("table");
    for(j=0; j<tables.length; j++)
      if (tables[j].className.indexOf('Rayada') > -1) // Sí el nombre de la clase de la tabla incluye 'Rayada'
        for (k=0; k<tables[j].rows.length; k=k+2) tables[j].rows[k].className+='impar';
  }
}*/

function abrirVentanaVideo(video,titulo) {
   var left = Math.floor( (screen.width - 570) / 2);
   var top = Math.floor( (screen.height - 482) / 2);
   var winParms = "top=" + top + ",left=" + left + ",height=" + 482 + ",width=" + 570;
   winParms += ",scrollbars=no,resizable=no";
   var win = window.open("/VerVideo.aspx?f=" + video + "&t=" + titulo, "Video", winParms);
   if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
   return win;
}

