function openDictionaryTerm(term) {
  if (term != null) {
    var firstCharacter = term.charAt(0);
    firstCharacter.toLowerCase();
    newWin = window.open(unescape("/cancer-guide/glossary/" + firstCharacter + ".htm#" + term), "dictionary","toolbar=no,resizable=no,scrollbars=no,width=400,height=400");
    newWin.focus();
  }
}