// JavaScript Document

wmtt = null;

document.onmousemove = updateWMTT;

function updateWMTT(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 + 5) + "px";
	wmtt.style.top  = (y + 5) + "px";
	wmtt.style.zIndex = 11;
	}
}

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

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