var IE = (document.all)?true:false;
if (!IE) document.captureEvents(Event.MOUSEMOVE);
if (!IE) document.captureEvents(Event.MOUSEUP);
// Set-up to use mouseYPos function onMouseMove
var yPos;
function mouseYPos(e) {
  if (IE) { // grab the y pos.s if browser is IE
    yPos = event.clientY + document.body.scrollTop;
  } else {  // grab the y pos.s if browser is NS
    yPos = e.pageY;
  }
  // catch possible negative values in NS4
  yPos = (yPos <0)? 0 : yPos;
  // show the position values in the form named Show
  // in the text fields named MouseX and MouseY
  eval(mouseMoveState[activeMouseState]);
  return true;
}
function adjustEditWindow(yPos){
  //document.Show.MouseY.value = yPos;
}
