I was just playing around with this and found that:
Code:
<script type="text/javascript">
for (var i_tem = 1; i_tem < 10; i_tem++)
document.write('<img src="../thumb2/photo'+i_tem+'.jpg">')
</script>
Slipped in between the opening and closing <nobr id="trueContainer"></nobr> tags worked well. You would need to modify it for your purposes, something like:
Code:
<nobr id="trueContainer"><script type="text/javascript">
for (var i_tem = 1; i_tem <= 100; i_tem++)
document.write('<img src="/thumbnails/m'+(1000+i_tem)+'.jpg">')
</script></nobr>
That is for 1001 through 1100 of them.
Bookmarks