// andy - function for opening up the glossary popup window

function raw_popup(url, target, features) {
 
  var theWindow = window.open(url, '_blank', 'location=0,status=1,scrollbars=1,menubar=0,resizable=1,width=300,height=200');
  theWindow.focus();
  return theWindow;
}

function glossaryPopup(src, features) {
  return raw_popup(src.getAttribute('href'), src.getAttribute('target') || '_blank', features);
}

