Your output in HTMl would look like this:
Code:
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<script>
function toggleSibling()
{
if (window.event.srcElement.nextSibling.style.display=="none")
window.event.srcElement.nextSibling.style.display = "block";
else
window.event.srcElement.nextSibling.style.display = "none";
}
</script>
<body>
<p><a style="cursor:pointer;cursor:hand; font: bold;color: #FF0000" onclick="toggleSibling();">Click ME
</a><table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
<tr>
<td width="50%">test </td>
<td width="50%">test</td>
</tr>
<tr>
<td width="50%">test</td>
<td width="50%">terst</td>
</tr>
</table></p>
</body>
</html>