<!-- 

function PopIt(Site, IdTerm)
{

var PopUp_Path = "http://"+Site+"/php/Thesaurus/Glossary_Display.php?GLOSS_ID="+IdTerm+"&PoPuP=Yes";
var PopUp_Height = 400;
var PopUp_Width = 500;
var PopUp = '';
	   if (PopUp.location && PopUp.closed)
	   {
			   PopUp.location.href = PopUp_Path;
	   }
	   else
	   {		
			PopUp=window.open(PopUp_Path,'name','height=' + PopUp_Height + ',width=' + PopUp_Width + ',scrollbars=yes,resizable=yes,dependent,screenX=10,screenY=10');
			PopUp.opener.focus()
			if (PopUp.opener) PopUp.opener = self;
	   }
	   if (window.focus) {PopUp.focus()}
}

function PopIt_N(IdTerm)
{

var PopUp_Path = "/php/Thesaurus/Glossary_Display.php?GLOSS_ID="+IdTerm+"&PoPuP=Yes";
var PopUp_Height = 400;
var PopUp_Width = 500;
var PopUp = '';
	   if (PopUp.location && PopUp.closed)
	   {
			   PopUp.location.href = PopUp_Path;
	   }
	   else
	   {		
			PopUp=window.open(PopUp_Path,'name','height=' + PopUp_Height + ',width=' + PopUp_Width + ',scrollbars=yes,resizable=yes,dependent,screenX=10,screenY=10');
			PopUp.opener.focus()
			if (PopUp.opener) PopUp.opener = self;
	   }
	   if (window.focus) {PopUp.focus()}
}
 -->
