function showAcct() {
alert('dude, let go of my browser!');
nw = window.open('acctinfo.html?stateInfo=qkdbhYaUfWaPddlN9034|14&closebutton=yes&prompt=email','wacctinfo','width=450,height=350,left=250,top=100,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no');
nw.focus();
}
I fire this event onLoad and get my alert message, but no popup window in Netscape or Opera. This works in IE and I have the same code tied to an anchor's onClick event and that works in all browsers. By the way the nw statement is all on 1 line (unlike how it is being displayed here).
Any ideas?
Thanks, much,
Mickey
alert('dude, let go of my browser!');
nw = window.open('acctinfo.html?stateInfo=qkdbhYaUfWaPddlN9034|14&closebutton=yes&prompt=email','wacctinfo','width=450,height=350,left=250,top=100,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=no');
nw.focus();
}
I fire this event onLoad and get my alert message, but no popup window in Netscape or Opera. This works in IE and I have the same code tied to an anchor's onClick event and that works in all browsers. By the way the nw statement is all on 1 line (unlike how it is being displayed here).
Any ideas?
Thanks, much,
Mickey