What I am trying to do... let's say A is image1, B is image2, C is image3 and D is image4. I need to click on the cell containing A and the second cell in the other table would change the background to image1. Click on the cell containing D... the background in the second cell of the other table would change to image4.
<table><tr>
<td width="50" align="center">A</td>
<td width="20"></td>
<td width="50" align="center">B</td>
<td width="20"></td>
<td width="50" align="center">C</td>
<td width="20"></td>
<td width="50" align="center">D</td>
</tr></table>
<BR><BR>
<table><tr>
<td width="50" align="center">unchanged</td>
<td width="20"></td>
<td width="100" align="center">background color<br>changes when<br>A,B,C or D<br>
is clicked on.</td>
<td width="20"></td>
<td width="50" align="center">unchanged</td>
</tr></table>
Thank you for your time.