// JavaScript Document
var abaAtual = 'local';
var abaAtual_titulo = 'local_titulo';
function mostrar_div(id_div){
	var _abaAtual = document.getElementById(abaAtual);
	var _abaAtual_titulo = document.getElementById(abaAtual+'_titulo');
		_abaAtual.className = "aba";
		_abaAtual_titulo.className = "titulo";
	var	nextAba = document.getElementById(id_div);
	var	nextAba_titulo = document.getElementById(id_div+'_titulo');
		nextAba.className = "aba_ativa";
		abaAtual = id_div;
		nextAba_titulo.className = "titulo_ativo";
}
function popUp(pagina){
	var width = 800;
	var height = 600;
	popup = window.open(pagina,'','width='+width+', height='+height+', fullscreen=no, location=0, directories=0, menubar=no,resizable=no, scrollbars=auto, status=no, titlebar=no,toolbar=no');
}