wmtt = null;
document.onmousemove = updateWMTT;

function updateWMTT(e) {
  if (wmtt != null) {
    x = (document.all) ? window.event.x + wmtt.offsetParent.scrollLeft : e.pageX;
    y = (document.all) ? window.event.y + wmtt.offsetParent.scrollTop  : e.pageY;
    wmtt.style.left = (x - 70) + "px";
    wmtt.style.top   = (y - 330) + "px";
    wmtt.style.width = (200) + "px";
    wmtt.style.height = "auto";

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

/*

wmtt2 = null;
document.onmousemove = updateWMTT2;

function updateWMTT2(e) {
  if (wmtt2 != null) {
    x1 = (document.all) ? window.event.x1 + wmtt2.offsetParent.scrollLeft : e.pageX;
    y1 = (document.all) ? window.event.y1 + wmtt2.offsetParent.scrollTop  : e.pageY;
    wmtt2.style.left = (x1 + 50) + "px";
    wmtt2.style.top   = (y1 + 50) + "px";
    wmtt2.style.width = (200) + "px";
    wmtt2.style.height = "auto";

  }
}
function showWMTT2(id) {
  wmtt2 = document.getElementById(id);
  wmtt2.style.display = "block";
}
function hideWMTT2() {
  wmtt2.style.display = "none";
}


*/
  
   //wmtt.style.width = (300) + "px";
  //wmtt.style.height = (100) + "px";
