var toolt = null;
document.onmousemove = updateTT;
function updateTT(e) {
  if (toolt != null) {
    x = (document.all) ? window.event.x + toolt.offsetParent.scrollLeft : e.pageX;
    y = (document.all) ? window.event.y + toolt.offsetParent.scrollTop  : e.pageY;
    toolt.style.left = (x + 20) + "px";
    toolt.style.top   = (y + 20) + "px";
  }
}
function showTT(id) {
  toolt = document.getElementById(id);
  toolt.style.display = "block";
}
function hideTT() {
  toolt.style.display = "none";
}

function showD(id) {
  document.getElementById(id).style.display = "block";
}



