// JavaScript Document
function verFoto(foto, w, h)
{	//var w = "500";
	//var h = "375";
	var pic = window.open('','','width=' + w + ',height=' + h);
	
	pic.document.write('<html><body topmargin=0 leftmargin=0>');
	pic.document.write('<img src="' + foto.src.replace("mini/","") + '" border="0">');
	pic.document.write('</body></html>');
}
function mapa()
{	var pic = window.open('','','width=700,height=187');
	
	pic.document.write('<html><body topmargin=0 leftmargin=0>');
	pic.document.write('<img src="mapa.jpg" border="0">');
	pic.document.write('</body></html>');
}