

function actions_Tracks(season,tour){
	 change_seasons(season);
//	 backTrackWomens(woman);
//	 backTrackPara(para);
	 backTour(tour);
}


/*function actions_men(season,tour){
	 change_seasons(season);
//	 backTrackWomens(woman);
//	 backTrackPara(para);
	 backTour(tour);
}

function actions_women(season,tour){
	 change_seasons(season);
//	 backTrackPara(para);
//	 backTrackMen(men);
	 backTour(tour);
}

function actions_para(season,tour){
	 change_seasons(season);
//	 backTrackMen(men);
//	 backTrackWomens(woman);
	 backTour(tour);
}*/

function actions_Tour(season,tracks){
	 change_seasons(season);
//	 backTrackMen(men);
//	 backTrackWomens(woman);
	 backTrack(tracks);
}

function actionsSeason(tracks,tour){
	 backTrack(tracks);
//	 backTrackWomens(woman);
//	 backTrackPara(para); 
	 backTour(tour);
}


function change_seasons (theSelSeason){
	if(theSelSeason.options[1].selected)
			{
				theSelSeason.selectedIndex = theSelSeason.options[0];
				//remove the summer superoverlay
			}
}
/*function backTrackWomens (theSeltrackF){
	theSeltrackF.selectedIndex = theSeltrackF.options[0];
}

function backTrackPara (theSeltrackP){
	theSeltrackP.selectedIndex = theSeltrackP.options[0];
}

function backTrackMen (theSeltrackM){
	theSeltrackM.selectedIndex = theSeltrackM.options[0];
}
*/


function backTrack (theSeltrack){
	theSeltrack.selectedIndex = theSeltrack.options[0];
}


function backTour (theSeltrackT){
	theSeltrackT.selectedIndex = theSeltrackT.options[0];
}

function clearKml(){

var features = ge.getFeatures();
while (features.getFirstChild())
   features.removeChild(features.getFirstChild());

}
