function abrirfoto (foto){
   miventana= window.open("","_blank","top=15,left=30,width=10,height=10,menubar=NO,scrollbars=no,status=NO,resizable=no ");
miventana.document.write("<html>");
miventana.document.write("<head><title>Abrir galeria de fotos de la exposición</title>");
miventana.document.write("</head>");
miventana.document.write("<img src='");
miventana.document.write(foto);
miventana.document.write("' name='");
miventana.document.write("fotogr'>");
miventana.document.write("</body>");
miventana.document.write("</html>");
cargado = 'n'
   while (cargado = 'n') 
   {
	if (miventana.document.images[0].complete) { break; }
   }
   miventana.window.resizeTo(miventana.document.fotogr.width + 10,miventana.document.fotogr.height + 30);
} 


