I had this same problem and found an easy solution at http://www.bloggerforum.com/modules/xoopsfaq/index.php?cat_id=8
I modified the CSS img to look like this:
.post img {
padding:4px;
border:1px solid #222;
max-width:410px;
width: expression(this.width > 410 ? 410: true);
}