// JavaScript Document
//window.name = 'pop';
// IDENTIFY NAVIGATOR
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var bPlat = navigator.appVersion;
var NS2 = (bName == "Netscape" && bVer == 2);
var nojava = ((bName.indexOf("Explorer") != -1) && (bVer <= 3));
// NEW WINDOW POP UP
function newwin(url,w,h) {
  var wind = null;
  var opts = 'toolbar=no,location=no,directories=no,status=nomenubar=no,resizable=yes,scrollbars=yes,';
  opts += 'width=' + w + ',height=' + h + ',screenX=150,left=150,screenY=80,top=80';
  wind = window.open(url, 'glossary', opts);
  if (wind != null && wind.opener == null) {
    wind.opener = self;
  }
}
