// JavaScript Document

// showing help function
function ShowHelp(elId, title, desc) {
  el = document.getElementById(elId);
	el.innerHTML =	'<div class="helptext"><b>' +	title +	'</b><br>' + desc + '</div>';
	el.style.display =	'inline';
	el.style.zindex =	3;
}

// hiding help function
function HideHelp(elId) {
  el = document.getElementById(elId);
  el.style.display = 'none';
}	 
