function FecharContador(cod2,cod3){
		Aviso(1);
		var url="pcontador.php?fechar=true&matricula="+cod2+"&hinicio="+cod3;
		requisicaoHTTP("GET",url,true);
}

function IniciarContador(cod){
	if(cod) {
		Aviso(1);
		var url="pcontador.php?cod="+cod;
		requisicaoHTTP("GET",url,true);
	}
}

function trataDados(){
	var info = ajax.responseText;  // obtém a resposta como string
	document.getElementById('corpo').style.display = "none";
	var saida = document.getElementById("status");
	saida.innerHTML = info;
	Aviso(0);
	OcultaIniciar(0);
}


function OcultaIniciar(exibir) {
	var saida = document.getElementById("iniciar");
	saida.innerHTML = "";
	saida.className = "";
}


// Exibe ou oculta a mensgam de espera
function Aviso(exibir) {
	var saida = document.getElementById("aviso");
	if(exibir){
		saida.className = "aviso";
		saida.innerHTML = "Aguarde...processando";
	} else {
		saida.className = "";
		saida.innerHTML = "";
	}
}
