They look a right mess on my installation of IE7.
Using Firefox, look at the errors it finds in the HTML and fix them and I think you'll find it works a lot better in IE7. If you don't have the code checker addon for Firefox, get it (and use it).
For example, your textarea is coded as:
Code:
<textarea cols=80 rows=6 readonly><a href="" target="new"></a> - </textarea>
which on its own generates four errors! It should be coded as:
Code:
<textarea cols="80" rows="6" readonly="readonly"><a href="" target="new"></a> - </textarea>