
function ShowHelp(div, desc)
		{
			div = document.getElementById(div);
			div.style.display = 'inline';
			div.style.position = 'absolute';
			div.style.width = '140';
			div.style.backgroundColor = '#F6FAFB';
			div.style.border = 'dashed 1px black';
			div.style.padding = '5px';
			div.innerHTML = '<div>' + desc + '</div>';
		}

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