// Javascript1.1 to open a Glossary window, and bring it in front when its content changes.// T.Wiltshire 13/3/01 electricdruid@hotmail.comvar Gwin;function Glossary(word) {	gWin = window.open('/pus/Glossary/glossary.html#'+word,'Glossary','scrollbars=yes,resizable=yes,width=400,height=96');	gWin.focus();	return false;}