/* JavaScripts for E-Herold, Version 0.2 */
/* Author Florian Sutter */

/////////////////////////////////////////////////////////////////////////////
// GLOBALS

var wmtt = null;
document.onmousemove = updateWMTT;

function updateWMTT(e) {
  if (wmtt != null) {
    x = (document.all) ? window.event.clientX: e.pageX;
    y = (document.all) ? window.event.clientY: e.pageY;
    wmtt.style.left = (x + 20) + "px";
    wmtt.style.top   = (y + 20) + "px";
    
  }
}

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

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