
function ShowToolTip(e, strText)
{
	_ShowToolTip(e.clientX + GetScrollPosLeft() - 180, e.clientY + GetScrollPosTop() + 10, strText);
}
function ShowToolTipLeft(e, strText)
{
	_ShowToolTip(e.clientX + GetScrollPosLeft() - 370, e.clientY + GetScrollPosTop() + 10, strText);
}
function ShowToolTipRight(e, strText)
{
	_ShowToolTip(e.clientX + GetScrollPosLeft() + 10, e.clientY + GetScrollPosTop() + 10, strText);
}
