2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00
Files
CATI_Tool/js/popupkeep.js
2008-10-15 04:42:53 +00:00

14 lines
338 B
JavaScript

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;
}