var xplus = 0;
var yplus = 0;
wmtt = null;
document.onmousemove = updateWMTT;
function showWMTT(id, tmpxplus, tmpyplus) {
xplus = tmpxplus;
yplus = tmpyplus;
wmtt = document.getElementById(id);
wmtt.style.display = "block"
}
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 (navigator.appName == "Microsoft Internet Explorer"){
x = window.event.x;
y = window.event.y;
}else{
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 + xplus) + "px";
wmtt.style.top 	= (y + (yplus-5)) + "px";
}
}
function hideWMTT() {
wmtt.style.display = "none";
}