Hi there..... I'm getting stuck now that I want to assign specific text to a cell of a table using dhtml.

here's what I need to do:

<table id="mytable" border="1" cellspacing="1" width="100">
<tr>
<td id="A1" width="20">&nbsp;</td>
<td id="A2" width="20">&nbsp;</td>
<td id="A3" width="20">&nbsp;</td>
</tr>
</table>

<script language=vbscript>
mytable.cells.item("A1").style.text = "day 1"
mytable.cells.item("A2").style.text = "day 2"
mytalbe.cells.ietm("A3").style.text = "day 3"
</script>

the above codes don't seem to be doing the job..... if you have a better idea please forward your suggestion..... thanks.