function toggleSublist(id, link) {
//  alert(id);
  if (document.getElementById) {
    var listToShow = document.getElementById(id);
//    alert(listToShow.style.display);
    if (listToShow.style.display == "none") {
      listToShow.style.display = "block";
      link.title = "click to hide links for this year";
    }
    else {
      listToShow.style.display = "none";
      link.title = "click to show links for this year";
    }
  }
}
