<!--
function AbrirVentana(ficherografico, texfoto) {
 MiVentana=window.open("","Ventanita","toolbar=no,directories=no,menubar=no,scrollbars=yes,left=0,top=0,height="+(screen.height-32)+",width="+(screen.width-8)+",resizable");
 MiVentana.document.write("<HTML><HEAD><META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=iso-8859-1'>");
 MiVentana.document.write("<TITLE>Album fotogr&aacute;fico de Blesa, un lugar en el mundo - ",texfoto,"</TITLE>");
 MiVentana.document.write("<BASE HREF='",window.location,"'></HEAD>");
 MiVentana.document.write("<BODY STYLE='background-color:#000000'>");
 MiVentana.document.write("<TABLE HEIGHT='90%' WIDTH='100%' BORDER='0'><TR><TD ALIGN='CENTER' VALIGN='MIDDLE'>");
 MiVentana.focus();
 MiVentana.document.write('<BR><IMG SRC=',dirFotos+ficherografico,' alt="',texfoto,'">');
 MiVentana.document.write('<BR><BR><I><SPAN STYLE="color:#D0F0EE"><span style="font-size:11pt">',texfoto,'</span></SPAN><I>');
 MiVentana.document.write("</TD></TR></TABLE>");
 MiVentana.document.write("<DIV STYLE='text-align:center'><BR><a href='javascript:window.close()'><img SRC='icopgcer.gif' ALT='Cerrar fotografia' BORDER=0></a><BR><BR></DIV>");
 MiVentana.document.write("</BODY></HTML>");
 MiVentana.document.close();
}

function FotoVentana(objeto) {

ruta  = document.images[objeto].src;
texto = document.images[objeto].alt

MiVentana=window.open("","Ventanita","toolbar=no,directories=no,menubar=no,scrollbars=yes,left=0,top=0,height="+(screen.height-32)+",width="+(screen.width-8)+",resizable");
 MiVentana.document.write("<HTML><HEAD><META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=iso-8859-1'>");
 MiVentana.document.write("<TITLE>Album fotogr&aacute;fico de Blesa, un lugar en el mundo - ",texto,"</TITLE>");
 MiVentana.document.write("<BASE HREF='",window.location,"'></HEAD>");
 MiVentana.document.write("<BODY STYLE='background-color:#000000'>");
 MiVentana.document.write("<TABLE HEIGHT='90%' WIDTH='100%' BORDER='0'><TR><TD ALIGN='CENTER' VALIGN='MIDDLE'>");
 MiVentana.focus();
 MiVentana.document.write('<BR><IMG SRC="',ruta,'" alt="',texto,'">');
 MiVentana.document.write('<BR><BR><I><span style="font-size:11pt"><SPAN STYLE="color:#D0F0EE">',texto,'</span></SPAN><I>');
 MiVentana.document.write("</TD></TR></TABLE>");
 MiVentana.document.write("<DIV STYLE='text-align:center'><BR><a href='javascript:window.close()'><img SRC='icopgcer.gif' ALT='Cerrar fotografia' BORDER=0></a><BR><BR></DIV>");
 MiVentana.document.write("</BODY></HTML>");
 MiVentana.document.close();
}

// -->
