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){ //tc_2_8
document.location = "tc_"+valor.value+"_"+tramo + ".html";
}

function cambiarasp_tramo(valor){
	var tramo = parseInt(valor.value) + 1
	document.location = "tc_"+clas_actual+"_"+tramo+".html" //"online.asp?c=" + clas_actual + "&t=" + tramo;
}

