/* Ueberwachung der Mausbewegungen */
function MouseMove(event, divid) {
  var d = divid;
  var mausx,mausy;
		/* MSIE, Konqueror, Opera : */
  if (document.all) {
    mausx=event.clientX;
    mausy=event.clientY;
    if (document.body.scrollLeft) mausx+=document.body.scrollLeft;
    if (document.body.scrollTop) mausy+=document.body.scrollTop;
  }

		/* Netscape, Mozilla : */
  else {
    mausx=event.pageX;
    mausy=event.pageY;
  }
  mausx=mausx-253;
  document.getElementById(d).style.display="block";
  document.getElementById(d).style.position = "absolute";
  document.getElementById(d).style.left = mausx+"px";
  document.getElementById(d).style.top = mausy+"px";
}

function Hide(d) {
    /* hide the pop-up */
    document.getElementById(d).style.display="none";
}