1. How can I set the script to open the gallery pop-up _in front of_ the main window when clicking on other thumbnails?
2. Is it possible to be able have more than one window open, ie, a visitor can click on multiple thumbnails resulting in several popup windows open simultaneously?
don't put javascript in the href as a lot of it wont work properly from there - put it in the onclick instead and get rid of the javascript: label.
To make sure that the window opens in front you need to use:
var newwin = window.open(....) newwin.focus();
Since most popup blockers only allow popups to open when they are specifically requested to be opened by your visitors any attempt to open more than one will more than likely mean that they all get blocked.
I think I am missing something. IE reports an error & FF opens a window to the wrong dimensions. Also tried using the code for the multiple popups w/ even less success.
Bookmarks