
function ShowToolTip(e, strText)
{
	_ShowToolTip(e.clientX + GetScrollPosLeft() - 100, e.clientY + GetScrollPosTop() - 320, strText);
}
function ShowToolTipLeft(e, strText)
{
	_ShowToolTip(e.clientX + GetScrollPosLeft() - 240, e.clientY + GetScrollPosTop() - 320, strText);
}
function ShowToolTipRight(e, strText)
{
	_ShowToolTip(e.clientX + GetScrollPosLeft() + 10, e.clientY + GetScrollPosTop() - 320, strText);
}
function HideToolTip()
{
    document.getElementById("ToolTip").style.display = "none";
}