Forum Moderators: open
function win() {
window.open("../MyDirectory/MyFile.asp","","height=800,width=1024,left=0,top=0,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes");
}
function winClose() {
self.close()
}
This is called with an OnClick and and closes with an OnBLur.
My problem is that the new window I want to open needs to have the location bar available.
If I remove the location parameter, I do not get that annoying alert box. But, if I do include it, then the page is redirected with the annoying alert box.
How can I get around this?
Thanks for all your help,
bB
Janevok,
By doing a "document.location='myfile.asp' on a onClick" -- wouldn't that leave the underlying pop-up open?
Thanks all for your quick repsonses,