function onout() { self.status='';return true; }

//- Devuelve el navegador que se usa -
function infoBrowser()
{ if (document.all) browser='msie';
  else if(document.getElementById) browser='gecko';
  else if (document.layers) browser='netsc';
  else browser='';
  return browser;
}

//- Pinta una entrada de ese directorio -
//- Argumentos: (clase,key,type,image,object_name,size,author,fecha,description,meta_1)
function info(row,key,type,image,object_name,size,author,fecha,description,meta_1)
{ document.write("<tr><td class=t-bg width=5px>");
  document.write("&nbsp;</td>");

  document.write("<td class="+row+" width=5px>&nbsp;</td>");

  if (type=='url') { link_name=unescape(meta_1);}
  else if (type=='archivo') { link_name=object_name;}
  else if (type=='folder')  { link_name=object_name+"/";}
  document.write("<td class="+row+" width=30px><a href="+link_name+" onmouseover='onout()' onmouseout='onout()'>&nbsp;<img src='/images/"+image+"' border=0 >&nbsp;</a></td>");
  document.write("<td class="+row+" align=middle width=5px >&nbsp;</td>");
  document.write("<td width=200px class="+row+"><b><a href="+link_name+" onmouseover=\"onout()\" onmouseout=\"onout()\">"+unescape(object_name)+" </a></b></td>");
  document.write("<td align=middle width=5px class="+row+"><sub>&nbsp;</sub></td>");
  if (size!='') document.write("<td align=middle width=75px class="+row+"><sub>"+size+"</sub></td>");
  else          document.write("<td align=middle class="+row+">&nbsp;</td>");
  document.write("<td align=middle width=200px class="+row+"><sub>"+author+"</sub></td>");
  document.write("<td align=middle width=200px class="+row+"><sub>"+fecha+"</sub></td>");
  if (description.length>0) { pr=" class="+row+" rowspan=2"; sp=" rowspan=2";}
  else { pr=" class="+row; sp='';}

  document.write("<td class="+row+">&nbsp;</td>");
  document.write("<td class=t-bg align=middle width=5px>&nbsp;</td>");
  if (infoBrowser()=='gecko')  object_name=escape(object_name);
  col=8;
  document.write("</TR>");
  if (description.length>0)
  { document.write("<TR class="+row+"><td class=t-bg width=5px>&nbsp;</td>");
    document.write("<td width=5px>&nbsp;</td>");
    document.write("<TD colspan="+col+">&nbsp;<sub><I>"+unescape(description)+"</I></sub></TD><td class=t-bg width=5px>&nbsp;</td></TR>");
  }
}

