function showRefs(refId) {
  var entry = document.getElementById(refId);
  if(entry.getAttribute("class") == "bibtex-visible") {
    entry.setAttribute("class", "bibtex-hidden");
  } else {
    entry.setAttribute("class", "bibtex-visible");
  }
}

