<!--

var toolTip;
var xOffset = 0;
var yOffset = 15;

document.onmousemove = getMousePos;

function showToolTip( tooltipId )
{
  toolTip = document.getElementById(tooltipId).style;
  toolTip.visibility = "visible";
}

function hideToolTip()
{
  toolTip.visibility = "hidden";
  toolTip.left = -1000;
  toolTip.top = -1000;
  toolTip = false;
}

function getMousePos( e )
{
  if ( toolTip )
  {
    if ( is_ie )
    {
    	toolTip.left = event.x + document.body.scrollLeft + xOffset;
    	toolTip.top = event.y + document.body.scrollTop + yOffset;
    }
    else
    {
    	toolTip.left = e.pageX + xOffset;
    	toolTip.top = e.pageY + yOffset;
    }
  }
}

//-->