/**
 * Displays a Glossary term from the term given
 */
function glossaryTerm(term) {
  filename = "/af/glossary?term="+escape(term);
  window.open(filename, "Glossary", "width=275,height=300,resizable=no,scrollbars=yes");
}

/**
 * Displays a Glossary term from the id given
 */
function glossaryId(id) {
  filename = "/af/glossary?glossaryId="+id;
  window.open(filename, "Glossary", "width=275,height=300,resizable=no,scrollbars=yes");
}
