When the user inadvertently double clicks on the table rows or anchors in the example below using Firefox, the Grow effect is stopped and the page becomes unusable. Any suggestions as to how to force FF to ignore the double clicks? I tried using Prototype's Stop.event and that didn't seem to help.
<table border=1>
<tr onclick="Effect.Grow('floater');">
<td>Some Text</td>
<td><a href="#" onclick = "Effect.Grow('floater');return false;">1</a></td>
<td><a href="#" onclick = "Effect.Grow('floater');return false;">2</a></td>
</tr>
</table>
<div id = "floater" style="display:none;width:100%;height:100%;background-color:red">
<a href="#" onClick="Effect.Shrink('floater');return false;">close floater</a><div>