<!--
function CMAGlossary(term,section,id)
{
	var check, check2
	check = document.title
	check2 = check.slice(check.length - 8)
	
	// if (navigator.appName != "Netscape") 
	// {
		term = escape(term)
		section = escape(section)
	// } 

	if (check2 == "Glossary")   // if the page calling this is the main glossary page then stay there, dont do a popup
	{
		winurl = "/glossary/index.asp?term=" + term + "&section=" + section + "&id=" + id
		document.location = winurl;
	}
	else
	{
		winurl = "/glossary/glossary.asp?term=" + term + "&section=" + section + "&id=" + id
		popupwin = window.open(winurl,"GlossaryPopUp","resizable=1,height=500,width=500,location=0,menubar=0,scrollbars=auto,status=0,titlebar=0,toolbar=0");
	
	}

}


function ImagePopUp(imgid)
{
popupwin = window.open("/glossary/imagePopUp.asp?img=" + imgid,"ImagePopUp","resizable=1,height=500,width=500,location=0,menubar=0,scrollbars=auto,status=0,titlebar=0,toolbar=0");
}

//-->