// General JavaScript Document
function openWindow(theURL) {
window.open(theURL, 'glossary', 'toolbar=0,location=0,scrollbars=1,width=330,height=300,resizable=0');
}

function ChangeOpener(url) {
 if (window.opener) {
 window.opener.location.href = url;
 window.opener.focus();
 } else {
 var objNew = window.open(url, 'locator', '');
 objNew.focus();
 }
}
