The radio button groups have more than two options.
<td rowspan="5" style="text-align:left">
<input type="radio" value="0" name="attr_CT" checked="true" /> <span data-i18n="ct_normal">Normal</span><br />
<input type="radio" value="-1" name="attr_CT" /> -1<br />
<input type="radio" value="-2" name="attr_CT" /> -2<br />
<input type="radio" value="-5" name="attr_CT" /> -5<br />
<input type="radio" value="-10" name="attr_CT" /> -10<br />
<input type="radio" value="0[Helpless]" name="attr_CT" /><span data-i18n="ct_helpless">Helpless</span>
</td>
<td rowspan="4" style="text-align:left">
<input type="radio" value="0" name="attr_CT" checked="true" /> <span data-i18n="ct_normal">Normal</span><br />
<input type="radio" value="-1" name="attr_CT" /> -1<br />
<input type="radio" value="-2" name="attr_CT" /> -2<br />
<input type="radio" value="-5" name="attr_CT" /> -5<br />
<input type="radio" value="-10" name="attr_CT" /> -10<br />
<input type="radio" value="-10[Helpless]" name="attr_CT" /> <span data-i18n="ct_helpless">Helpless</span>
</td>
I'm not exactly sure how that would work in this case. The groups have the same name, so where would that go in your code? And would I use the values where you have "button1" and "button2"? (And so on for all 6 buttons)