var xplus=0,yplus=-10; var runnerobject; function MouseAction(mausx,mausy) {  runnerobject.left=mausx+xplus;  runnerobject.top=mausy+yplus; } function MouseMove(event) {  var mausx,mausy;  if (typeof(event) != "object") {    return;  }  mausx=event.clientX;  mausy=event.clientY;  if (document.body.scrollLeft) {    mausx += document.body.scrollLeft;  }  if (document.body.scrollTop) {    mausy += document.body.scrollTop;  }  MouseAction(mausx,mausy); } function MouseInit() {  window.onmousemove = MouseMove;  runnerobject = document.all.runner.style; } function InfoText(text) {  document.write("
"+  ""+text+"
");  MouseInit(); }