diff options
Diffstat (limited to 'template/default/library.js')
-rw-r--r-- | template/default/library.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/default/library.js b/template/default/library.js index d7f65f3..29bbe42 100644 --- a/template/default/library.js +++ b/template/default/library.js @@ -26,11 +26,11 @@ function callurl( url ) { } function popup(URL, win_w, win_h) { - window.open(URL, '_new', 'width=' + win_w + ', height=' + win_h + ', scrollbars=yes, resizable=yes, toolbar=no, status=no'); + window.open(URL, '_blank', 'width=' + win_w + ', height=' + win_h + ', scrollbars=yes, resizable=yes, toolbar=no, status=no'); } function toolbar(URL) { - window.open(URL, '_new', 'width=200, height=50'); + window.open(URL, '_blank', 'width=200, height=50'); } function AllMessages(myform) |