just what I say is that it would be good to just reduce the images in the showthread ..
edit
. this was what I wanted to put that code thanks dLAN and worked to perfection only reduces the images in postbody .. xd
Code:
/* BEGIN Image resize */
.postbody IMG{
max-width: 85%;
height: expression(this.height > 100 ? "100px" : true);
width: expression(this.width > 100 ? "100px" : true);
}
/* END Image resize */