
<!--
var IE = document.all?true:false
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var mX = 0
var mY = 0

function getMouseXY(e) {
  if (IE) { // grab the x-y pos.s if browser is IE
    mX = event.clientX + document.body.scrollLeft
    mY = event.clientY + document.body.scrollTop
  } else {  // grab the x-y pos.s if browser is NS
    mX = e.pageX
    mY = e.pageY
  }  
  return true
}

//-->
