Dirk: Div - show - in Listen

Hallo,
ich habe folgendes Problem und eine Lösung hier im Forum bisjetzt nicht gefunden.

Ich generiere eine Liste mit Namen. Beim Mouseover erscheint ein Hinweis.
Wenn die Liste nicht größer ist wie das browserfenster ist das ok.Sobald man aber nach unten scrollen mus wird der Hinweis nicht richtig angezeit.

Kann mir da jemand helfen?

Und so sieht es zur Zeit aus.

Funktionen: (aus php)

  
echo "<script type=\"text/javascript\">  
    <!--  
  
    NS4 = (document.layers) ? 1 : 0;  
    IE4 = (document.all) ? 1 : 0;  
  
    function show ( name ) {  
      x = currentX;  
      y = currentY + 20;  
      if (NS4) {  
        document.layers[name].xpos = parseInt ( x );  
        document.layers[name].left = parseInt ( x );  
        document.layers[name].ypos = parseInt ( y );  
        document.layers[name].top = parseInt ( y );  
        document.layers[name].visibility = \"show\";  
      } else {  
 // alert(\"Left: \" + x + \"  Top: \" + y);  
  document.all[name].style.position = \"absolute\";  
 document.all[name].style.left = parseInt ( x );  
        document.all[name].style.top = parseInt ( y );  
        document.all[name].style.visibility = \"visible\";  
      }  
    }  
  
    function hide ( name ) {  
      if (NS4) {  
        document.layers[name].visibility = \"hide\";  
      } else {  
        document.all[name].style.visibility = \"hidden\";  
      }  
    }  
  
    currentX = currentY = 0;  
  
    function mauspos(e) {  
      if ( NS4 ) {  
        currentX = e.pageX;  
        currentY = e.pageY;  
      } else {  
  currentX = event.x;  
        currentY = event.y;  
      }  
    }  
  
    if ( NS4 ) {  
      document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);  
    }  
    document.onmousemove = mauspos;  
  
    //-->  
    </script>  
</HEAD>";  

Aufruf:

<td class=lighter align=left><b>
<a class=biglink name=1 href=... onMouseOver="window.status='BKK Post'; show('box-1'); return true;" onMouseOut="window.status=''; hide('box-1'); return true;">Titel</a>
<DIV ID=box-1 class=hidden>
<table border=1 cellpadding=5 cellspacing=0 bordercolor=black width=300>
<tr>
 <td class=popup>
    <b>Titel</b><br>
  <li class=popup>Erklärung
 </td>
</tr>
</table>
</td>
und so weiter

Besten Dank
Dirk