// JavaScript Document
function abrir_div(id)
{
	if(document.getElementById(id).style.display == "none")
	{
		document.getElementById(id).style.display = "";
	}else
	{
		document.getElementById(id).style.display = "none"	
	}
}
function _logout() 
{
	/*if(confirm("Deseja realmente sair do sistema?"))*/
	if(confirm("Confirma a saída do Sistema?"))
	{
		parent.document.location.href="login.php?acao=deslogar";
	}
} 


//finishAjax
