As Tommy said, the only way you can do exactly what you want is by using Javascript.
HTML Code:
<tr onclick="window.location='somepage.html'" onmouseover="this.style.cursor='hand'"><td>Content Here</td></tr>
To get this to work properly in IE5.5, IE6, Fx, and Opera, you will need to add some CSS to define the cursor style for that <tr>
So, give the <tr> an id or class, by using this:
HTML Code:
<tr id="cursor_id" onclick="window.location='somepage.html'" onmouseover="this.style.cursor='hand'"><td>Content Here</td></tr>
Then in your CSS add this:
Code:
#cursor_id {
cursor: pointer;
}
Bookmarks