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