Pop-Up Window Sizing Issue

swsu
swsu Community Member Posts: 29
If you don't have unique names for each of the popup windows it will always open up with the first width.Two Solutions:Solution A: Make each window name unique in the popup properties. Downside, you will have 3 different popup windows.Solution B: Add code to each of the popups to resize the window each time it goes to the page. (Width,Height) I just did it as 500pixels by 500pixels. window.resizeTo(500,500);Add this code using an external html object and header scripting. Note this may not work all the time because of different users security settings. Most adblockers block the execution of this code nowadays. So use at your own risk.Edited By: Xithis on 2009-3-11 14:48:33