Your table is too high. Ordinarily that would just place the pagination links down lower. But something else on your page, perhaps the height of the table's container element is preventing them from being seen.
Try 300 instead of 600 (change highlighted and red):
Code:
<script type="text/javascript">
//Define your own array to hold the photo album images
//Syntax: ["path_to_thumbnail", "opt_image_title", "opt_destinationurl", "opt_linktarget"]
var myvacation=new Array()
myvacation[0]=["bna1asmall.jpg", "Before", "bna1a.jpg"]
myvacation[1]=["bna1bsmall.jpg", "After", "bna1b.jpg"]
myvacation[2]=["bna2asmall.jpg", "Before", "bna2a.jpg"]
myvacation[3]=["bna2bsmall.jpg", "After", "bna2b.jpg"]
//initiate a photo gallery
//Syntax: new photogallery(imagearray, cols, rows, tablewidth, tableheight, opt_[paginatetext_prefix, paginatetext_linkprefix])
var thepics=new photogallery(myvacation, 2, 1, '700px', '300px')
//OPTIONAL: Run custom code when an image is clicked on, via "onselectphoto"
//DELETE everything below to disable
//Syntax: function(img, link){}, whereby img points to the image object of the image, and link, its link object, if defined
thepics.onselectphoto=function(img, link){
if (link!=null) //if this image is hyperlinked
window.open(link.href, "", "width=650, height=500, status=1, resizable=1")
return false //cancel default action when clicking on image, by returning false instead of true
}
</script>
Bookmarks