// JavaScript Document
function flash(largura,altura,caminho){
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="' + largura + '" height="' + altura + '">');
document.write('<param name="movie" value="' + caminho + '" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="wmode" value="transparent" />');
document.write('<embed src="' + caminho + '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="' + largura + '" height="' + altura + '" wmode="transparent"></embed>');
document.write('</object>');
}

function mostraEstado(estado){
	var valor = document.getElementById(estado).innerHTML;
	document.getElementById("escolhido").innerHTML = valor;
	location.href="#mapa";
	valor = "";
	/*var meu = new Array();
	meu = ["AM","GO","DF","AC","PA","AP","RO","RR","MS","MT","TO","SP","PR","RS","SC","RJ","ES","MG","BA","AL","SE","PE","RN","PB","MA","PI","CE","FENADVB","USA","PORTUGAL","JAPAO"];
	var tamanho = meu.length;
	
	for (i=0;i<tamanho;i++){
		if(meu[i] == estado){
			document.getElementById(meu[i]).style.display = '';
		} else {
			document.getElementById(meu[i]).style.display = 'none';
		}
	}*/
}