I have a form that has a submit and a reset button at the bottom, I have tried to add a button that links to a htm page but I cannot get it to work and look good at the same time. I have javascript and php encoded on the form.
This way looks great, all 3 are buttons and
evenly spaced but the form does not work:
<tr>
<td><div align="center">
<input type="submit" class="submit2" value="Submit Bid">
</div>
<div align="center">
<input type="reset" class="submit">
</div>
<input name="weeks" type="button" class="submit" id="weeks" onclick="MM_openBrWindow('avwn.htm','','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=500,height=400')" value="Weeks"></td>
</tr>
This way works well but looks terrible, the submit and resets are buttons but are at differant sides of the form and "Weeks" is not a button at all, just the word underlined:
<tr>
<td><div align="left">
<input type="submit" value="Submit Bid" name="Submit">
</div></td>
<td><div align="left">
<input type="reset" name="Reset" value="Reset ">
</div></td><td> </td>
<td><a href="javascript:;" onClick="MM_openBrWindow('/bids/avwn.htm','','scrollbars=yes,resizable=yes,width=500,height=500')">Weeks</a></td>
</tr>
How can I get this to look good (3 buttons evenly spaced) and work properly?