<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META content="MSHTML 5.00.2614.3500" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Hi all,<BR><BR>How do I get around this 
problem?<BR>I have a DIV with a TABLE in it that I'm using as a popup 
menu.<BR>Its initially HIDDEN and becomes VISIBLE when the cursor moves over a 
link.<BR>So when the mouse leaves the DIV I want the menu to become HIDDEN 
again.<BR>Sounds easy but the problem is that I'm getting the ONMOUSEOUT event 
being triggered when the cursor<BR>moves from one table row to the next, 
followed by another ONMOUSEOVER as it enters the next row.<BR><BR>Here's sample 
code demonstrating the problem:<BR><BR>&lt;DIV ID=menu STYLE='position: 
absolute; left: 200px; top: 300px;visibility: 
visible'<BR>onmouseover='alert("in");' 
onmouseout='alert("out");'&gt;<BR>&lt;TABLE WIDTH=120 BORDER=1 CELLPADDING=0 
CELLSPACING=0&gt;<BR>&lt;TR&gt;&lt;TD&gt;option1&lt;/TD&gt;&lt;/TR&gt;<BR>&lt;TR&gt;&lt;TD&gt;option2&lt;/TD&gt;&lt;/TR&gt;<BR>&lt;/TABLE&gt;<BR>&lt;/DIV&gt;<BR><BR><BR>regards<BR>Lau<BR><BR></FONT></DIV></BODY></HTML>