
function showHelp(div, title, desc) {
	div = document.getElementById(div);
	div.style.display = 'inline';
	div.style.position = 'absolute';
	div.style.width = '200';
	div.style.backgroundColor = '#f33';
	div.style.border = 'dotted 1px black';
	div.style.padding = '4px';
	div.innerHTML = '<strong>' + title + '</strong><br/><div>' + desc + '</div>';
	}

function hideHelp(div) {
	div = document.getElementById(div);
	div.style.display = 'none';
	}

