var SgdTempo = tempoRegressivo;
function startClockRegressivo(){
	if (startRelogio)
	{
 		if(SgdTempo!=0)
 		{
			document.getElementById('relogio').innerHTML = SgdTempo--;
		 	setTimeout("startClockRegressivo()",1000);
 		}
 		else
 		{
			var cLocation = document.location.toString();
			cLocation = cLocation.replace('erro','xyz');
			//document.location = cLocation;
			//document.location.reload();										
 		  	//dC.getElementById('corpo').src = 'campeonatos/details.htm';
 		  	//dC.getElementById('relogio').innerHTML = tempoRegressivo;
			fechar();
 		}
 	}
}