
	function ShowHelp(div, title, desc)
	{
		div = document.getElementById(div);
		div.style.display = 'block';
		div.style.position = 'absolute';
		div.style.width = '210';
		div.style.backgroundColor = 'lightyellow';
		div.style.border = 'solid 1px black';
		div.style.padding = '10px';
		div.style.marginTop = '5px';
		div.style.marginLeft = '20px';
		div.innerHTML = '<b>' + title + '</b><br><div>' + desc + '</div>';
	}

	function HideHelp(div)
	{
		div = document.getElementById(div);
		div.style.display = 'none';
	}