<!-- 
// this function is to retreive a glossary term located in the glossary folder of the main directory
function newWinGloss(glossterm,width,height) {
	glosspage = "../glossary/" + glossterm + ".html";
	this.w = width;
	this.h = height;
	if (w==null) {
	w = 500;
	}
	if (h==null) { 
	h= 300;
	}
	
	window.open(glosspage, 'GlossaryItem', 'status=no,scrollbars=yes,height='+h+',width='+w);
}

/*
The link for the glossary term should be as follows
<a href="#" onClick="newWindow('glossary_word')">term</a>
*/
// -->