function ShowTip(div, title, desc)
{
	div.style.display = 'inline';
	div.style.position = 'absolute';
	div.style.width = '300';
	div.style.backgroundColor = '#eeeeee';
	div.style.border = '2px black';
	div.style.padding = '5px';
	div.innerHTML = '<b class=title>' + title + '</b><br><div style="padding-left:10; padding-top:5; padding-right:5"><font face="Tahoma" style="font-size: 8pt" color="#000080">' + desc	+ '</div>';
}
function HideTip(div)
{
	div.style.display = 'none';
}