Replace:
HTML Code:
<td colspan="2" rowspan="2" align="center" valign="middle"><div id="dynloadarea" style="width:357px;height:357px"></div></td>
with:
HTML Code:
<td id="dynloadarea" style="width:357px!important;width:100%;height:357px!important;height:100%;" colspan="2" rowspan="2" align="center" valign="middle"></td>
Notes: Out of Opera, IE and FF, the '!important;' hack was required only for Opera (IE and FF were both fine with 100% dimensions, Opera made the cell real big though). The max-width and max-height properties should be used instead but, they didn't work.
Bookmarks