function showFoto(src, legenda)
{
    
	//criando um link falso, para o LightBox captar as informações
    var a_false = document.createElement("A");
    a_false.rel = "lightbox";
    a_false.href = src;
	a_false.title = legenda;
    //chamando a função do lightbox responsável pelo início das ações
    myLightbox.start(a_false);
    //anulando o link
    a_false = null;
} 

//pop up centralizadas
function pop_up(mypage, myname, w, h, scroll){
	var winl = (screen.width - w) / 2 + 15;
	var wint = (screen.height - h) / 2 + 15;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4)
		{ 
			win.window.focus();
		}
}

function comochegar(){
	exibir_mapa();	
}

