mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
7 lines
197 B
JavaScript
7 lines
197 B
JavaScript
var newwindow;
|
|
function poptastic(url)
|
|
{
|
|
newwindow=window.open(url,'name','height=600,width=350,resizable=yes,scrollbars=yes,toolbar=no,status=no');
|
|
if (window.focus) {newwindow.focus()}
|
|
}
|