<script language="javascript">
function sh()
{
   if(document.all.tr1.style.display=="")
       document.all.tr1.style.display="none";
   else
      document.all.tr1.style.display="";
}
</script>
<html>
<body>
<form name="form1">
<table width="100%" border="1">
<tr>
<td>
<a href="" onclick="sh();return false">show/hide</a>
<td>
</tr>
<tr id="tr1">
<td>&nbsp;Test</td>
</tr>
</table>
</form>
<body>
</html>