function reportglosspop(term) {

	leftPos = 300 
	topPos = 300;
	
	if (screen) { 
		leftPos = (screen.width / 2) - 175; 
		topPos = (screen.height / 2) - 40;
	}
	
	newWindow = window.open('/StaticResources/info/popups/reportgloss.html#' + term,'Glossary','scrollbars=yes,width=350,height=80,left=' + leftPos + ',top=' + topPos);
	
	newWindow.focus();
}