// JavaScript Abre
function abre(ruta)
{
   i1 = new Image;
   i1.src = ruta;
   html = '<html><head><title>Atalanta</title></head>';
   html += '<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0>';
   html += '<center><a href="javascript:window.close();"><img src="'+ruta+'" alt="Cerrar" border=0 name="Foto" ';
   html += 'onLoad="window.resizeTo(document.Foto.width+10,document.Foto.height+30)"></a>';
   html += '</center></body></html>';
   popupImage = window.open('','_blank','scrollbars=0,resizable=1');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close();
}

