function MM_reloadPage(init)
{  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

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 + 15) + "px";
    wmtt.style.top = (y + 15) + "px";
  }
}

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

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

MM_reloadPage(true);

wmtt = null;
document.onmousemove = updateWMTT;