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