Hi all;
I'm trying to open a pop-up in a new window with an .aspx page
every time a button is clicked on the base page.
Instead, the first pop-up window opens (as expected), then each click
of the button replaces the first window with a new window. I want the
first .aspx pop-up window to remain as is, then new windows opened
for each click of the button on the base (.aspx) page.
This is the Javascript that I use to open the pop-up:
var selection_win_url
= "http://localhost/CtrlInitVDir/"
+ "popup_01.aspx";
var g2_selection_popup = '';
function invoke_popup () {
var win_chrome = "toolbar=0,scrollbars=1,location=1,statusbar=0,"
+ "menubar=0,resizable=1,replace=0";
var win_dimn = ",width=1240,height=820,left=20,top=40";
g2 ...
Go to the complete details ...