function abrePopup(nome, endereco, largura, altura){
	window.open(endereco, nome, 'width='+ largura +',height='+ altura +',scrollbars=no');
}

function abrePopMapa(estado){
	if((estado != 'RS') && (estado != 'SC') && (estado != 'SP')){
		return false;
	}
	
	window.open('popMapa'+estado+'.htm', 'popMapa', 'width=422, height=392');
}

