function glossary(term, definition)
{ 
  window.status = 'Opening definition...'; 
  glossaryWindow = window.open('ref.htm','glossary','width=500,height=200,scrollbars=yes'); 
  glossaryWindow.document.open();
  glossaryWindow.document.write("<html><head><title>"+ term +": Definition</title>");
  glossaryWindow.document.write("<link href='../generic/nn4.css' rel='stylesheet' type='text/css'><style type='text/css' rel='stylesheet'>@import url(../generic/main.css);</style></head>

<body><!--Survey code removed from here-->");
  glossaryWindow.document.write("<div class='canvas'><div class='mainborder'><div class='maintitle'>");
  glossaryWindow.document.write("<h1>"+ term +": Definition</h1></div>");
  glossaryWindow.document.write("<div class = 'main'>");
  glossaryWindow.document.write("<p>" + definition +"</p><p class='modlinks'><a href='javascript:void(0);' class='up' onclick='window.close()'>CLOSE</a></p></div></div></div></body></html>");
  glossaryWindow.document.close();
  glossaryWindow.focus();		
}
