// isIE - true iff Internet Explorer client
var isIE = (navigator.userAgent.toLowerCase().indexOf("msie") != -1) ? true : false;

//
function openGlossary(t) {
	if (arguments.length != 1)
		t = "glossary_a.html";
		
	var newWin = window.open("/home/aian/glossary/" + t,
	"helpwin","menubar=yes,scrollbars=yes,toolbar=yes,resizable=yes,top=20,left=20,width=550,height=320");
	newWin.focus();
}

function openHelp(f) {
	var newWin = window.open("/home/aian/glossary/" + f + ".html",
	"helpwin","menubar=yes,scrollbars=yes,toolbar=yes,resizable=yes,top=20,left=20,width=550,height=320");
	newWin.focus();
}
