
function glossary(link)
{
    // open a JS window with the glossary term, templateid = 26 or 27

    win = window.open(link,"glossary",
            "width=350,height=250,scrollbars=1,toolbar=0," +
            "location=0,directories=0,status=0,menubar=0,resizable=1");

    win.focus();
}


