// Functions for TurRapporterings

function changeSeason(base) {
	var selector = document.getElementById('seasonSelector');
	var selectedIndex = selector.selectedIndex;
	if(selectedIndex < (selector.options.length-1) ) {
		var newLocation =  base + '?sasongIndex='+selectedIndex;
		document.location.href = newLocation;
	} else {
		document.location = 'http://www.frilufts.se/stockholm/alliansen/turer/03/index.htm';
	}
}