POPUP Problem

hy,

following situation :

a button with AS :

on (release) {

image="’./1.html’";
getURL (“javascript:NewWindow=window.open(”+image+",‘newWin’,‘width=810,height=610,left=5,top=5,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No’); NewWindow.focus(); void(0);");

}

=> opens a new window with 1.html without any problem. 1.html contains my_wave.SWF with a button with following AS:

on (release) {
my_mov=“2.mov”;
getURL (“javascript:NewWindow=window.open(”+my_mov+",‘newWin’,‘width=640,height=470,left=10,top=10,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No’); NewWindow.focus(); void(0);");
}
=> and here is the problem. this popup opens in the SAME window and not ina new window.

What can I do to let it open in a new window and given the same properties to this new window as above : toolbar=No,location=No,scrollbars=No,status=No etc…

a geturl opens it in a new window but does not give toolbar=No,location=No,scrollbars=No,status=No etc… properties to the window

any suggestions?

thanks for your help! :smiley:

your popups are trying to open in the same window because the “NewWindow” and “NewWin” are the javascript names for that particular window. make different names like “NewWindow_1”, and such.

ah! ok thanks alot! :-))