Why wont this form submit?

Hey guys,
Ive been building a load of forms recently…layed out in tables.

Ive had no problems so far…except with this one…it just WILL NOT submit…can anyone suggest what im dooin wrong?

<table border="0" cellspacing="0" cellpadding="5" width="100%"><form name="form1" method="post" action="index.php?section=polls&submit" enctype="multipart/form-data">
  <tr>
    <td colspan="2" nowrap class="content"><h3>Submit Poll// </h3></td>
    <td nowrap class="content"><h3>View Results // </h3></td>
  </tr>
  <tr>
    <td width="172"  nowrap class="content">Poll Question: </td>
    <td width="100"   class="content"><input name="question" type="text" id="question" size="25" maxlength="25"></td>
    <td   class="content"><select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
      <option>Select:</option>
    </select></td>
  </tr>
  <tr>
    <td width="172" nowrap class="content">Possible Answers: </td>
    <td class="content"><input name="answer1" type="text" id="answer1" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td class="content"></td>
    <td class="content"><input name="answer2" type="text" id="answer2" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer3" type="text" id="answer3" size="25" maxlength="25"></td>
    
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer4" type="text" id="answer4" size="25" maxlength="25"></td>
    
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td nowrap class="content"><input name="answer5" type="text" id="answer5" size="25" maxlength="25"></td>
    <td nowrap class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer6" type="text" id="answer6" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer7" type="text" id="answer7" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer8" type="text" id="answer8" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer9" type="text" id="answer9" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td class="content"><input name="answer10" type="text" id="answer10" size="25" maxlength="25"></td>
    <td class="content"></td>
  </tr>
  <tr>
    <td nowrap class="content"></td>
    <td align="right" class="content"><input name="posterid" type="hidden" id="posterid" value="<? echo $_SESSION['posterid']; ?>"/>
      <input name="submit" type="button" id="submit" value="Save" class="admin"></td>
    <td class="content"></td>
  </tr>
  
  </form>
</table>

4give me…I had the wrong button type attribute set.

Think I have form fever! :puzzled: