Ho risolto da solo, vi posto il codice in forma banale ma funzionante.
Scusate moltissimo per il distrubo :rollo:

codice:
<html>
<head>

<script>

function show()
{
	if (document.getElementById('show1').style.display=='block')
	{
		document.getElementById('show1').style.display='none';
	}
	else
	{
		document.getElementById('show1').style.display='block';
	}
}

</script>

</head>

<body>
Mostra



<table border="1" width=600><tr><td style="display: none" id="show1">Hello</td></tr></table>
</body>
</html>