// JavaScript Document


tiempo_de_juego=30*60; //segundos
horaIni= ;
t=horaIni;



function cronos(){	
	if (t>horaIni+tiempo_de_juego){
		cerrarVentana();
	}	
//	document.getElementById('elp').innerHTML="tie: "+t;
	cronosTimerId = window.setTimeout('cronos()', 1000);	
	t+=1
}



function cerrarVentana(){
	window.open('http://www.chocolisto.com/descansa/', '_self', null);
}



function stopCronos()
{
	window.clearTimeout(cronosTimerId);
}



