I found this is the easiest mod for image resize.
I have modified the code slight, and there is only one modification to be made at class_bbcode.php:
replace:
Code:
return '<img src="' . $link . '" border="0" alt="" />';
with
Code:
There is nothing to be done at headinclude.
return '<img src="' . $link . '" onload="if(this.width > 700) {this.width=700;this.alt=\'Click here to see a large version\';}" onmouseover="if(this.alt) this.style.cursor=\'pointer\';" onclick="if(this.alt) window.open(\'' . $link . '\');" border="0" />';