In the template, find:
HTML Code:
* html .resizeimage, .resizednote { width: expression((this.width > intval(600 - 1))) ? '600px' : 'auto'); }
Replace it with:
HTML Code:
* html .resizeimage, .resizednote { width: expression((this.width > intval(600 - 1)) ? '600px' : 'auto'); }
That's the only place I could find an expected ';', so let me know if that changes anything.