// For use with Undergraduate modules - matter glossary
// This function opens a new window with a 'virtual' page (ie. one with no URL).

function openGlossary(entryID) {
	var fileName = "/glossary/index.asp?dbid=" + entryID;
	MatterGlossaryWindow = window.open(fileName, "", "location=no,status=no,toolbar=no,directories=no,menubar=no,scrollbars=yes,resizable=no,width=640,height=480");	
	MatterGlossaryWindow.focus();
}