Hi,
I have a problem with the following script:
------------------------------
<HTML>
<HEAD>
<script language="JavaScript">
<!--
function Show()
{
document.layers.test.visibility = "show"
};
function Hide()
{
document.layers.test.visibility = "hide"
};
// -->
</SCRIPT>
</HEAD>
<BODY TEXT="#000000" >
<a href="javascript:Vis();">Visible</A><br>
<a href="javascript:Hid();">Hidden</A>
<div style="position:absolute;visibility:visible" id="test">
<table bgcolor="#FF0000" height="100" width="100">
<tr>
<td>
Test
</TD>
</TR>
</TABLE>
</DIV>
</BODY>
</HTML>
-----------------------------------------
At start, the red table is visible. When I click on "Hide", the table
disappears under NS4 but not under mozilla (ns5). Why?
Bye
Michael