function enlace(pagina){
	var d = new Date();
	document.location.href=pagina+"?ts="+d.getTime();
}

function cambiar(valor){
	var d = new Date();
	document.location = valor.value + ".html?ts="+ d.getTime();
}

//Para cuando los tiempos tiran de la BD en sql
//function cambiarasp(valor){
	//var d = new Date();
	//document.location = "online.asp?c=" + valor.value + "&t=" + tramo;
//}

function cambiarasp_tramo(valor){
	d = new Date();
	var tramo = parseInt(valor.value) + 1
	document.location = "online.asp?c=" + clas_actual + "&t=" + tramo;
}

// Para cuando termina el rally y se quedan las pag en html
function cambiarasp(valor){
document.location = valor.value + ".html";
}