

function popGlossary(thisAnchor) {

	if (thisAnchor){
		theURL = 'glossary.html#' + thisAnchor;
		
		resizable = 1;
		width = 400;
		height = 300;
	} else {
		theURL = 'glossary.html';
		
		resizable = 1;
		width = 500;
		height = 600;
	}
	winName = 'glossary';

	
	features = "width=" + width + ",height=" + height + ",dependent=1,directories=0,location=0,menubar=0,resizable=" + resizable + ",scrollbars=1,toolbar=0,status=1";
	top[name] = window.open(theURL, winName, features);
	top[name].focus();
	
}