function ShowGlossaryItem(div, desc) {

	//var width = (width) ? width : 250;
	var width = '250px';
	var div = document.getElementById(div);
	var html = '<span>' + desc + '</span>';
	
	div.style.display = 'inline';
	div.style.position = 'absolute';
	div.style.width = width;
	div.style.backgroundColor = 'lightyellow';
	div.style.border = 'solid 1px black';
	div.style.padding = '3px 7px';
	div.style.color = '#000000';
	div.style.fontSize = '12px';
	div.style.fontWeight = 'normal';
	div.innerHTML = html;
}

function HideGlossaryItem(div) {
	var div = document.getElementById(div);
	div.style.display = 'none';
}
