<!-- 
// this function is to retreive a glossary term located in the glossary folder of the main directory
function newWinExtra(extra) {
	extrapage = "extra_info/" + extra + ".html";
	window.open(extrapage, 'ExtraInformation', 'status=no,scrollbars=yes,height=500,width=500,resizable=yes,screenX=50,screenY=50');
}
function newWinExtra640(extra) {
	extrapage = "extra_info/" + extra + ".html";
	window.open(extrapage, 'ExtraInformation', 'status=no,scrollbars=yes,height=500,width=640,resizable=yes,screenX=50,screenY=50');
}
function newWinExtraSite(extra) {
	extrapage =  extra;
	window.open(extrapage, 'ExtraInformation', 'status=no,scrollbars=yes,height=500,width=640,resizable=yes,screenX=50,screenY=50');
}

function newWinExtra2(extra) {
	extrapage = "extra_info/" + extra + ".html";
	window.open(extrapage, 'ExtraInformation', 'status=no,scrollbars=yes,height=500,width=500,resizable=yes,screenX=200,screenY=60,top=50,left=200');
}

/*
The link for the glossary term should be as follows
<a href="#" onClick="newWindow('extra')">term</a>
*/
// -->