function defineword(word){
	var glossarypath="glossary.htm#"+word;
	
	glossarywin=window.open(glossarypath,'glossarywin','width=300,height=60,scrollbars=yes');
	
	glossarywin.focus();


}

function printbutton(){
//In JavaScript the print() function works in NN4+ and MSIE5.

bName=navigator.appName;
bVer=parseInt(navigator.appVersion);
alert(bName);
alert(bVer);
if ((bName=="Netscape" && bVer>=4) || (bName=="Microsoft Internet Explorer" && bVer>=5))
	{
	document.write('<br><FORM><INPUT TYPE="BUTTON" VALUE="Print" onClick="window.print();"></FORM>');
	}
}


