tip=null;
moveX=7;
moveY=18;

function movetip(tišībj,x,y)
{
tišībj.top = y;
tišībj.left = x;
}

function mouseMove()
{
if (tip) movetip(tip,event.x + moveX + document.documentElement.scrollLeft,event.y + moveY + document.documentElement.scrollTop);
}

function showTip(which,MPX,MPY)
{
tip = document.all[which].style;
movetip(tip,MPX + moveX + document.documentElement.scrollLeft,MPY + moveY + document.documentElement.scrollTop);
document.onmousemove = mouseMove;
tip.visibility = "visible";
}

function hideTip(which)
{
document.all[which].style.visibility = "hidden";
tip=null;
}

