Looks like this (highlighted and underlined) space in this line:
Code:
document.write('<div align="center">Viewing Image: <b><span id="thecnt'+this.issid+'"><\/span><\/b>_of<span style="font-size:1ex;"> </span> <b>'+this.imgs.length+'<\/b><\/div>');
Let's zoom in:
Code:
<\/span><\/b>_of<span
Some servers just don't get it right when serving certain spaces in javascript code, I've seen similar things before, but I'm not sure why it happens - probably something to do with character encoding. I'd try changing it to a non-braking space entity:
Code:
<\/span><\/b> of<span
as this has proved successful in similar situations.
Bookmarks