function popup(popupURL,height, width)
{
	popupParams = 'scrollbars=yes,width=' + width + ',height=' + height;
	window.open(popupURL,('popup' + width),popupParams);
}

function popupglossary(searchTerm)
{
	var windowName = 'glossary.php?term=' + searchTerm;
	popup(windowName, 300, 400);
}