/* Function that pops up the glossary window */function popUp(url) {	newwindow=window.open(url,'gloss','width=400,scrollbars=yes');	if (window.focus) {newwindow.focus()}	return false;}function popUpMisc(url) {	newwindow=window.open(url,'misc','width=700,scrollbars=yes');	if (window.focus) {newwindow.focus()}	return false;}function targetopener(mylink, closeme, closeonly) {	if (! (window.focus && window.opener))return true;	window.opener.focus();	if (! closeonly)window.opener.location.href=mylink.href;	if (closeme)window.close();	return false;}