Just make this change, it's a simple CSS trick to change the cursor to a hand over the table cell:
Code:
<td style="cursor: pointer; cursor: hand;"
onMouseOver="this.bgColor='#D3D3D3'" onMouseOut="this.bgColor='#FFFFFF'";>
this should change color and look like a link
</td>
You could, of course, just make it a CSS class at the head of your document, like
Code:
td.rollover { cursor: pointer; cursor: hand; }
This, is of couse, if I understand you correctly that you want to make a 'fake link' on the rollovers...
http://devedge.netscape.com/viewsource/2002/cursor/