|
You could use javascript to get around this. Something like this. The following code is not 100% complete but enough to get the point accross. As Jazzee said adding a form in a table will add extra padding. But there are creative ways around that.
---------------------------------------------------------------
<form name="form1" action="page1.htm"><input type='hidden' name='1'></form>
<form name="form2" action="page2.htm"><input type='hidden' name='2'></form>
<form name="form3" action="page2.htm"><input type='hidden' name='3'></form>
<form name="form4" action="page2.htm"><input type='hidden' name='4'></form>
<form name="form5" action="page2.htm"><input type='hidden' name='5'></form>
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><a href="javascript: document.form1.submit();"><img src="image.jpg" width="11" height="36"></a></td>
<td><a href="javascript: document.form2.submit();"><img src="image.jpg" width="11" height="36"></a></td>
<td><a href="javascript: document.form3.submit();"><img src="image.jpg" width="11" height="36"></a></td>
<td><a href="javascript: document.form4.submit();"><img src="image.jpg" width="11" height="36"></a></td>
<td><a href="javascript: document.form5.submit();"><img src="image.jpg" width="11" height="36"></a></td>
</tr>
</table>
---------------------------------------------------------------
imaginemn
|