function startNextRaceUpdate(secs) {
	if (!_loggedIn) return; 

	var nextRaceUpdate = new RealTimeView(
		getUrlFromRoot("services/GetNextRaces.aspx"), 
		document.getElementById("nextJumps"),
		secs * 1000);
	
	nextRaceUpdate.Start(false);
}