//<!--
function reverseApos(str) {
	var s = str;
	s = s.replace(/#@#/g,"'");
	return(s);		
}

function openNewWindow(title,displayContent) {
	var s = "<html><head><title>Glossary</title></head><body><p><b><u>" + reverseApos(title)  + "</u></b></p><p style='font-size:x-small'>" + reverseApos(displayContent) + "</p><br/><p align='center'><input type='button' value='Close' onclick='window.close()'/></p></body></html>";
	var newWindow = open('','splashScreen','resizable=no,scrollbars=yes,status=no,width=240,height=250,screenX=500,screenY=200');
	newWindow.document.write(s);
	newWindow.document.close();
	newWindow.focus();
}
// -->

