You need to add
valign="top" in a couple of places.
Look for where you have this...
code:
<!-- Links and buttons end -->
</TD>
<td width="50%" height="100%" align="center">
...and change it to this...
code:
<!-- Links and buttons end -->
</TD>
<td width="50%" height="100%" align="center" valign="top">
Also, find where you have this...
code:
</TD>
<TD width="195" height="100%">
<!-- Other things (polls, search enginees, news) -->
...and change it to this...
code:
</TD>
<TD width="195" height="100%" valign="top">
<!-- Other things (polls, search enginees, news) -->
That should do it.