
	function ShowHelp(div, title, desc)
	{

		div = document.getElementById(div);
		div.style.display = 'inline';
		div.style.position = 'absolute';
		div.style.width = '150';
		div.style.backgroundColor = 'lightyellow';
		div.style.border = 'dashed 1px black';
		div.style.padding = '';
		div.innerHTML = '<b>' + title + '</b><br><div>' + desc + '</div>';
	}

	function HideHelp(div)
	{
		div = document.getElementById(div);
		div.style.display = 'none';
	}
