1 вариант
В CSS :
Code
.posttdMessage img {max-width:740px;} /* Макс. ширина */
.posttdMessage img {max-height:740px;} /* Макс. высота */
2 вариант
Code
.posttdMessage img {max-width:740px;width:expression((this.width>740) ? "740px" : true);}
.posttdMessage img {max-height:740px;height:expression((this.height>740) ? "740px" : true);}