function getStyleSuffix ($id)
  {
    if (isset ($_GET ['active']))
      $active = $_GET['active'];
    else
      $active = '';
    if ($id == $active)
      return "Huidig";
    else
      return "";
  }