private function ShowOtherSeasons()
 {
     # Check for other seasons. Check is >2 because current season is there twice - added above
     if (count($this->competition->GetSeasons()) > 2) {
         require_once "stoolball/season-list-control.class.php";
         echo new XhtmlElement('h2', 'Other seasons in the ' . Html::Encode($this->competition->GetName()), "screen");
         $season_list = new SeasonListControl($this->competition->GetSeasons());
         $season_list->SetExcludedSeasons(array($this->season));
         $season_list->AddCssClass("screen");
         $season_list->SetUrlMethod('GetMapUrl');
         echo $season_list;
     }
 }