function abreFoto(ruta)
{
   i1 = new Image;
   i1.src = ruta;
   html = '<html><head><title>VMC "Galerķa de fotos"</title></head>';
   html += '<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0 onLoad="self.focus();">';
   html += '<center><img src="images/'+ruta+'" border=0 name="Foto" ';
   html += 'onLoad="window.resizeTo(document.Foto.width,document.Foto.height+20)">';
   html += '</center></body></html>';
   popupImage = window.open('','galeria','width=100,height=100,scrollbars=0,resizable=0,left=10,top=10');
   popupImage.document.open();
   popupImage.document.write(html);
   popupImage.document.close();
}