how do you edit the contents in one cell of a table. i tried something like this
window.document.mytable.mycell.value = 'it worked';
where i have the following in <BODY></BODY>
<table name=mytable>
<tr>
<td name=mycell>chanage this</td>
</tr>
</table>