Your version of the script (photogallery.js) on your server is missing this line (red):
Code:
// -------------------------------------------------------------------
// Photo Album Script v2.0- By Dynamic Drive, available at: http://www.dynamicdrive.com
// Mar 11th, 07': Script updated to v2.0
// -------------------------------------------------------------------
function photogallery(garray, cols, rows, twidth, theight, paginatetext){
gcount=(typeof gcount=="undefined")? 1 : gcount+1 //global var to keep count of current instance of photo gallery
this.gcount=gcount
this.galleryarray=garray
this.cols=cols
this.rows=rows
var twidth=twidth || "500x" //default table width is 700px
var theight=theight || "500px"
var ptext=(typeof paginatetext=="object")? paginatetext : ["Browse Gallery:", ""] //Store 2 compontents of paginate DIV text inside array
this.pagecount=Math.ceil(this.galleryarray.length/(cols*rows)) //calculate number of "pages" needed to show the images
document.write('<tab . . .
When I ran your page with that line included, the pop up worked as expected.
Give it a shot.
Added Later:
I am seeing now that you took out that line to eliminate the 'Browse Gallery [1]" thing. You can just as easily get rid of that by editing the style here (addition red):
Code:
.photonavlinks{ /*CSS for pagination DIV*/
font: bold 14px Arial;
display:none;
}
Bookmarks