mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Import from DCARF SVN
This commit is contained in:
13
js/popupkeep.js
Normal file
13
js/popupkeep.js
Normal file
@@ -0,0 +1,13 @@
|
||||
var newwindow;
|
||||
function poptastic(url)
|
||||
{
|
||||
newwindow=window.open('','name','height=600,width=350,resizable=yes,scrollbars=yes,toolbar=no,status=no');
|
||||
|
||||
if (newwindow.closed || (! newwindow.document.URL) || (newwindow.document.URL.indexOf("about") == 0))
|
||||
newwindow.location=url;
|
||||
else
|
||||
newwindow.focus();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user