<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello!</title>
<script language="javascript" type="text/javascript">
function Go(asder){
table=asder;
xrow=table.getElementsByTagName("td");
for (j=0;j<xrow.length;j++)
{
xrow[j].innerHTML="changed";
}
}
</script>
</head>
<body>
<table>
<tr onclick="Go(this);">
<td>some text1</td>
<td>some text2</td>
</tr>
<tr onclick="Go(this);">
<td>some text1</td>
<td>some text2</td>
</tr>
<tr onclick="Go(this);">
<td>some text1</td>
<td>some text2</td>
</tr>
<tr onclick="Go(this);">
<td>some text1</td>
<td>some text2</td>
</tr>
<tr onclick="Go(this);">
<td>some text1</td>
<td>some text2</td>
</tr>
</table>
</body>
</html>