function PopUp(url, nome, largura, altura, sroll)
{
	var esq     = (screen.width - largura) / 2;
	var top    = (screen.height - altura) / 2;
	var janela = window.open(''+ url +'',''+ nome +'','width=' + largura + ',height=' + altura + ',top=' + top + ',left=' + esq + ',scrollbars='+ sroll +'');
	if (janela == null)
	{
		window.alert('POPUP BLOQUEADA.\n\nIdentificamos que você possui um bloqueador de popup, configure-o\npara aceitar popups de nosso site.\n\nObrigado!');
	}
}

function abas(o, aba)
{
	o.blur();
	if (o.className == "current") return false;

	var list = document.getElementById("nav").getElementsByTagName("a");
	for (var i = 0; i < list.length; i++)
	{
		if (list[i].className == "current") list[i].className = "";
	}
	o.className = "current";

	list = document.getElementById("texto").childNodes;
	for (var i = 0; i < list.length; i++)
	{
		if (list[i].tagName == "DIV") list[i].style.display = "none";
	}
	document.getElementById(aba).style.display = "block";
}