  function glossary(sample)
   {
   var samplewidth = 800;
   var sampleheight = 600;
   var samplex = Math.round(screen.width *.02);
   var sampley = Math.round(screen.height*.02);
   window.open(sample, "", "toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=" + samplewidth + ",height=" + sampleheight + ",screenX=" + samplex + ",screenY=" + sampley + ",left=" + samplex + ",top=" + sampley);
   }

