This has been discussed several times before, but it seems it has never made it to the snitz base code. It would be better for accessibility if the <label> tag was used for the text associated with form elements. For instance, instead of:
<input type="checkbox" name="SavePassWord" value="true" tabindex="-1" CHECKED>
<b>Save Password</b>
We could use:
<input id="savepwd" type="checkbox" name="SavePassWord" value="true" tabindex="-1" CHECKED>
<label for="savepwd"><b>Save Password</b></label>
That way, you could click the text label to toggle the form element.