<!--
var bhww = null;
var bhww2 = null;
var bhww3 = null;

function NewWindowLite(glossterm){
	if(bhww != null && !bhww.closed){
		bhww.close()
	}
	bhww = open(glossterm,"popup","toolbar=yes,width=800,height=600,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes,location=no");
}

function NewWindowLite2(glossterm){
	if (bhww2 != null && !bhww2.closed){
		bhww2.close()
	}
	bhww2 = open(glossterm, "popup2", "toolbar=yes,width=800,height=600,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes,location=no");
}

function NewWindowLite3(glossterm){
	if(bhww3 == null || bhww3.closed){
		bhww3 = open(glossterm,"popup","toolbar=yes,width=800,height=600,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes,location=no");
		bhww3.focus();
	}else{
		bhww3.location.href = glossterm;
		bhww3.focus();
	}
}

var bhww3 = null;

function NewWindowLiteCKLST(glossterm){
	if(bhww3 != null && !bhww3.closed){
		bhww3.close()
	}
	bhww3 = open(glossterm,"popup","toolbar=yes,width=750,height=490,directories=no,status=no,scrollbars=yes,menubar=no,resizable=yes,location=no");
}

var docbhw = null;

function docWindowlite(glossterm){
	if(docbhw != null && !docbhw.closed) {
		docbhw.close()
	}

	docbhw = open(glossterm,"popup","toolbar=yes,width=800,height=600,directories=no,status=yes,scrollbars=yes,menubar=yes,resizable=yes,location=no");
}

var xlsbhw = null;

function xlsWindowlite(glossterm){
	if(xlsbhw != null && !xlsbhw.closed) {
		xlsbhw.close()
	}
	xlsbhw = open(glossterm,"popup","toolbar=no,width=800,height=600,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,location=no");
}

// -->