// JavaScript Document
ativoregionais = null;
cellAtivoregionais = null;
timeIdregionais = null;
document.onclick = new Function("showcidades()");
function showcidades(obj,name,id)
{
	//alert(id);
	fade = name;
	name = document.getElementById(name);
	if(ativoregionais!=null) { 
		ativoregionais.style.visibility = "hidden"; 
		ativoregionais=null
	}
	if(obj)
	{
		cellAtivoregionais = obj;
	}
	if(timeIdregionais!=null){ clearTimeout(timeIdregionais); }
	if(name)
	{
	var newX = findPosX(obj);
	var newY = findPosY(obj);
	//var x = new getObj(name);
		//document.getElementById("conteudo").style.zIndex = "1";
		//document.getElementById("conteudoespaco").style.zIndex = "1";
		//document.getElementById("msghomeflash").style.zIndex = "1";
		name.style.zIndex = 300;
		name.style.visibility = "visible";
		name.style.top = newY + 0 + 'px';
		name.style.left = newX + 130 + 'px';
	
		//colorfade(fade);
		ativoregionais = name;
		cid = id;
		//alert(cid);
	}
}

function timerHidePopCidades()
{
	if(ativoregionais!=null)
	{
		timeIdregionais = setTimeout("ativoregionais.style.visibility = 'hidden'; timeIdregionais=null; ativoregionais=null;",1000);
	}
}
