hi i am using this code to open a new window in firefox but it opens a new TAB every time i want a new WINDOW else than a new TAB.
thanks for any help in advance
regards,
omer.
.js file
[html]
<a href="Del_stk.a sp" onclick="return open_popup('Del _stk.asp')">Del Items</a>
[/html]
thanks for any help in advance
regards,
omer.
.js file
Code:
function open_popup(url)
{
newwindow=window.open(url);
if(window.focus)
{
newwindow.focus();
}
return false;
}
<a href="Del_stk.a sp" onclick="return open_popup('Del _stk.asp')">Del Items</a>
[/html]
Comment