// JavaScript Document
function popUp(endereco) {
	window.open(endereco,'','width=200,height=210,top=30,left=30,scrollbars=no');
	return;
}

function abrirDiv(tabela) 
{
	tb = document.getElementById(tabela);
	
	if (tb.style.display == "none") {
		tb.style.display = "block";
	}
	else 
	{
		tb.style.display = "none";
	}
}

