Here is part of my code, since it is too big, I only cut out part of the code. Hope this can provide enough information.
<form name="page2" action="page2.php" method="post">
<input type="submit" name="view_button"
value="View"
style="cursor: Pointer;width:100px"
<input type="submit" name="result_button"
value="Contents"
style="cursor: Pointer;width:100px"
<table cellspacing="0" cellpadding="1" border="0" width="99.7%" class="result">
<tr class=Row1>
<td>
<input type="radio" name="select1" value="1"checked>
<!-- A lot of other stuff here -->
</td>
</tr>
<tr class=GridRow2>
<td><input type="radio" name="select2" value="2">
<!-- A lot of other stuff here -->
</td>
</tr>
</form>
Thanks.