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