Sure, here's the code I tried for what your recommended (display:block)
Note: I'm trying to get this to work in FF.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript">
function Manage(NodeID)
{
var oNode = document.getElementById(NodeID);
if (oNode.style.display == 'block') { oNode.style.display = 'inline';}
else {oNode.style.display = 'block';}
}
</script>
<body>
<table id="Tbl1" width="200" cellpadding="0" cellspacing="0" border="1">
<tr>
<td valign="top" width="200">In this edition:</td>
</tr>
<tr>
<td>Cell one</td>
</tr>
</table>
<label><input id="border" name="border" type="checkbox" value="Border" onChange="Manage('Tbl1');" checked="checked"> Show/Hide</label><br />
</body>
</html>
Thanks.
Bookmarks