  var x = 0;
  var y = 0;
  var snow = 0;
  var sw = 0;
  var cnt = 0;
  var dir = 1;
  var offsetx = 3;
  var offsety = 3;
  var width = 260;
  var height = 50;

  over = overDiv.style;
  document.onmousemove = mouseMove;

  function drs(text, title) { dts(1,text); }

  function nd() {
    if ( cnt >= 1 ) { sw = 0 };
    if ( sw == 0 ) { snow = 0; hideObject(over); }
    else { cnt++; }
  }

  function dts(d,text) {
    //txt = "<TABLE WIDTH=0 STYLE=\"border:1 #fff solid\" CELLPADDING=0 CELLSPACING=0 BORDER=3 BorderColor=#fff><TR><TD BGCOLOR=#fff><P align=justify class=\"comment\">&nbsp;"+text+"</FONT></TD></TR></TABLE>"
    txt = '<table bgcolor=#0F3537 cellspacing=1 border=0><tr><td bgcolor=#A3D3DE>'+text+'</td></tr></table>';
    layerWrite(txt);
    dir = d;
    disp();
  }

  function disp() {
    if (snow == 0) {
      if (dir == 2) { moveTo(over,x+offsetx-(width/2),y+offsety); } // Center
      if (dir == 1) { moveTo(over,x+offsetx,y+offsety); } // Right
      if (dir == 0) { moveTo(over,x-offsetx-width,y+offsety); } // Left
      showObject(over);
      snow = 1;
    }
  }

  function mouseMove(e) {
    x=event.x + document.body.scrollLeft+10
    y=event.y + document.body.scrollTop-7
    if (x+width-document.body.scrollLeft > document.body.clientWidth) x=x-width-50;
    if (y+height-document.body.scrollTop > document.body.clientHeight) y=y-height;

    if (snow) {
      if (dir == 2) { moveTo(over,x+offsetx-(width/2),y+offsety); } // Center
      if (dir == 1) { moveTo(over,x+offsetx,y+offsety); } // Right
      if (dir == 0) { moveTo(over,x-offsetx-width,y+offsety); } // Left
    }
  }

  function cClick() { hideObject(over); sw=0; }
  function layerWrite(txt) { document.all["overDiv"].innerHTML = txt; }
  function showObject(obj) { obj.visibility = "visible" }
  function hideObject(obj) { obj.visibility = "hidden" }
  function moveTo(obj,xL,yL) { obj.left = xL; obj.top = yL; }
