// go to the selected event..
function selectEvent(form,eventID)
{
	form.eventTypeID.value = eventID;
	form.submit();
}

function showTCRanking(URL)
{
	window.open(URL,"");
}

function selectRace(form,raceID)
{
	form.raceID.value = raceID;
	form.submit();
}

