Historico = {
	Acoes : new Array(),
	Acao : 0,
	
	Inicia : function(){
		document.getElementById('IFrameHistorico').src = '_inc/iframe.html?acao=1'
		Historico.Acoes.push(-1);
		Historico.Acao ++;
	},
	

	ContaAcao : function(valor){
		Historico.Acao ++;
		Historico.Acoes.push(valor);
		document.getElementById('IFrameHistorico').src = '_inc/iframe.html?acao=' + Historico.Acao;
	},
	
	ControlaIframe : function(location_iframe){
		var acao = FuncoesGerais.BuscaParametroComUrl(location_iframe,'acao');
		if(acao<Historico.Acoes.length){
			Historico.Acao --;
			var acaoQuebrada = Historico.Acoes[acao-1].split('-');
			//Controle.Voltar(Historico.Acoes[acao]);
			navegacao.acao(acaoQuebrada[0],acaoQuebrada[1]);
			//document.getElementById('Conteudo').innerHTML = Historico.Acoes[acao-1];
			Historico.Acoes.pop();
		}
	}
}