
 wmtt = null;

 /* Tooltip rechts */
 function updateTTR(e) {
  x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
  y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
  if (wmtt != null) {
    wmtt.style.left = (x + 20) + "px";
    wmtt.style.top  = (y + 20) + "px";
  }
 }

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

 function hideTTR() {
  wmtt.style.display = "none";
 }

 function moveTTR(){
  document.onmousemove = updateTTR;
 }



 /* Tooltip links */
 function updateTTL(e) {
  x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
  y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
  if (wmtt != null) {
    wmtt.style.left = (x - 160) + "px";
    wmtt.style.top  = (y + 25) + "px";
  }
 }

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

 function hideTTL() {
  wmtt.style.display = "none";
 }

 function moveTTL(){
  document.onmousemove = updateTTL;
 }

