function verFoto (nombreFoto,texto) {
 if (document.getElementById) {
//  textoPie="";
//  eval ("if (pie_"+ficha+".length > 0) textoPie = pie_"+ficha+"["+nombreFoto.toString()+"-1]");
//  alert('<img src="'+ nombreFoto.toString() +'" width="216" height="216"><div class="pie">'+textoPie+'</div>');
  document.getElementById('idFoto').innerHTML = '<img src="'+ nombreFoto.toString() +'" width="216"><div class="pie">'+texto+'</div>';
 }
}


function ponerFotos(ficha)
{
	if (ficha == "ciudad")
	{
	  document.write('<div class="botonMapa"><a href="javascript:verMapa(\'\');"><img src="../../../imagenes/verMapa.gif" width="56" height="17" alt="ver mapa" border="0"></a></div>');
	}
	eval("numFotos="+ficha);
	if (numFotos > 1)
	{
	  fotos='';
	  for (i=1;i<=numFotos;i++)
	  {
		textoPie="";
		eval ("if (pie_"+ficha+".length > 0) textoPie = pie_"+ficha+"["+i.toString()+"-1]");
		fotos+='<a href="javascript:verFoto('+i.toString() +',\''+ficha+'\');"><img id="idFotoPeq'+i.toString() +'" src="fotos/p/'+ficha+'/'+i.toString() +'.jpg" width="52" height="52" vspace="5" hspace="5" border="0" title="'+textoPie +'"></a>';
	  }
	  document.write(fotos);
	
	}
	if (numFotos > 0) verFoto (1,ficha);

}
