Here are some options that come to mind:
Option 1:
Since you open the windows with Javascript, just extend the function to check if another instance of that window is open already, if so, either resize the first popup & image or re-open a new window with the same image to 1/2 width. Then, fit your next popup window in the 1/2 width space left on the screen.
Option 2:
All of the window flipping may be disconcerting for some users, you might instead consider creating a window with two image locations, when the user clicks on a first home image the left image location is populated and the right image location is empty, when the user clicks on a second home image the right image location is populated. The process continues, replacing the left image and then the right image etc.
Option 3:
Don't make the user deal with the hassle of popup windows at all, just have a main window with two image locations with a scrollbar beneath each location, allowing the user to scroll through any two of the home images side-by-side. Of the options listed, this would be my preference if I was to visit the site.
Main Topics
Browse All Topics





by: mr_egyptianPosted on 2007-05-21 at 15:40:53ID: 19130503
I'm not sure what your function looks like, but you should be able to adapt it to something like:
pwin','wid th=615,hei ght=515,to olbar=0,re sizable=0' );
function pop(target){
var win=window.open(target,'po
win.focus();
}