Attack this function:
Code:
function transport(){
window.location=photoslink[which]
}
Change it to:
Code:
function transport(){
window.open(photoslink[which][0],'','width='+photoslink[which][1]+', height='+photoslink[which][2])
}
In the configuration area, set the variable linkornot=1 if you haven't already, and use this as a template for the photoslink array:
Code:
//Set corresponding URLs, width and height for links in a new window
//for each of above images. Define ONLY if variable linkornot equals "1"
photoslink[0]=["http://www.google.com/", 300, 250]
photoslink[1]=["http://www.yahoo.com/", 500, 100]
photoslink[2]=["http://www.dynamicdrive.com/", 375, 200]
Bookmarks