function exibir(img)
{
    document.getElementById("exibeFoto").src=img;
}

function loadImagesWait() {
 if (document.getElementById) {  // DOM3 = IE5, NS6
 document.getElementById('hidepage').style.visibility = 'hidden';
 }
 else {
 if (document.layers) {  // Netscape 4
 document.hidepage.visibility = 'hidden';
 }
 else {  // IE 4
       document.all.hidepage.style.visibility = 'hidden';
    }
    }
}


		function ImprimeMapa() {
			var mac = (navigator.userAgent.indexOf("Mac") != -1); 
			var doc = (document.all) ? 1 : 0;
			var ie_ns = (window.print) ? 1 : 0;

			if (ie_ns){				// Se for netscape 4 ou ie5
		    	window.print();
		  	}else if (doc && !mac){		// Se for ie4
		    	vbPrintPage()
			}else{     				// Outros
		    	alert("Por favor, selecione a opção Arquivo / Imprimir do menu superior para imprimir essa noticia.");
			}
		}

function abreMapa(url,target){
	var largura = 640;
	var altura = screen.height-50;
	window.open(url,target,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width='+largura+',height='+altura);
}