// Javascript1.0 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.close();	gWin = window.open('/pus/Glossary/glossary.html#'+word,'Glossary','scrollbars=yes,resizable=yes,width=400,height=96');	return false;}