function AbreJanela(url) {
 window.open(url,'_blank','width=374,height=450,scrollbars=no,resizable=no').focus()
}

function AbreJanela2(url) {
 window.open(url,'_blank','width=372,height=430,scrollbars=no,resizable=no').focus()
}
function AbreJanela3(url) {
 window.open(url,'_blank','width=372,height=260,scrollbars=no,resizable=no').focus()
}

function AbreMapa(url) {
	jan = window.open(url,'_blank','resizable=yes,width=600,height=400');
	jan.document.write('<html><head><title>:: Projeto Percepções ::</title></head>');
	jan.document.write('<body onload="window.resizeTo(imagem.clientWidth+10,imagem.clientHeight+30)"  ');
	jan.document.write('leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#ffffff">');
	jan.document.write('<img src="' + url + '" id="imagem" border=0></body></html>');
	jan.document.close();
	jan.focus();
}

