$(document).ready(function() {
	$('.localizacao').click(function (e) {
		e.preventDefault();
		window.open($(this).attr('href'), 'localizacao', 'status=yes,width=556,height=600');
	});
	
	$('a[rel~=external]').click(function (e) {
		e.preventDefault();
		window.open($(this).attr('href'));
	});
});

function centraliza(w,h){
	largura = w;
	altura = h;
	if (parseInt(navigator.appVersion) >= 4) 
		window.moveTo((screen.width/2)-(largura/2+10),(screen.height/2)-(altura/2+20));
}
