function janelaPop(url,alt,lar,texto) {
	janela = null;
	cima = (window.screen.height - alt)/2; 
	lado = (window.screen.width - lar)/2; 
	if(janela == null) {
		janela = window.open("","galeria","width="+lar+",height="+alt+",top="+cima+",left="+lado+",toolbars=no");
		janela.document.write("<html><head><title>"+texto+"</title></head><body style=\"margin: 0px\">");
		janela.document.write("<img src='"+url+"' width="+lar+" height="+alt+" alt='Versão Ampliada'>");
		janela.document.write("</body></html>");
	}
}

