﻿function ShowHelp(div, title, desc) {
	div = document.getElementById(div);
	div.style.display = 'block';
	div.style.position = 'absolute';
	div.style.width = '180';
	div.style.backgroundColor = '#D8E1E8';
	//	div.style.backgroundimage = 'images/question.gif';
	//	div.style.backgroundRepeat = ''
	div.style.border = 'solid 1px #000000';
	div.style.fontsize = '20';
	div.style.padding = '10px';
	div.style.marginTop = '15px';
	div.style.marginLeft = '10px';
	div.innerHTML = '<font style = "font-size: 12px;" color = "#000000"><strong>' + title + '</strong><br>' + desc + '</font>';
}

function HideHelp(div) {
	div = document.getElementById(div);
	div.style.display = 'none';
}
