not sure if the formatting will be preserved in the links below... but either do what the first guy suggested and bring the <td><a href><img></a></td> all together OR add a <br> after the </a> below
the carriage return is the problem
Code:
<td rowspan="2">
<a href="http://www.stockingsangels.com/fhg/sa/01/gall29/index.php?id=1100972" target="_blank"><img src="http://tinasnylons.com/tgp/thumbs/65.jpg" border="0" alt="Thumb"></a>
</td>
should be
Code:
<td rowspan="2"><a href="http://www.stockingsangels.com/fhg/sa/01/gall29/index.php?id=1100972" target="_blank"><img src="http://tinasnylons.com/tgp/thumbs/65.jpg" border="0" alt="Thumb"></a></td>
or
Code:
<td rowspan="2">
<a href="http://www.stockingsangels.com/fhg/sa/01/gall29/index.php?id=1100972" target="_blank"><img src="http://tinasnylons.com/tgp/thumbs/65.jpg" border="0" alt="Thumb"></a><br>
</td>