function abreFoto(ruta)
{
   i1 = new Image;
   i1.src = ruta;
   html = '<html><head><title>DISCEMA S.A.</title></head>';
   html += '<body leftmargin=0 marginwidth=0 topmargin=0 marginheight=0 onLoad="self.focus();">';
   html += '<center><img src="'+ruta+'" border=0 name="Foto" ';
   html += 'onLoad="window.resizeTo(document.Foto.width,document.Foto.height+80)">';
   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();
}
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=540,height=550,top=30,left=30');");
}