This commit is contained in:
Ross
2021-02-06 21:48:04 +00:00
parent 6098e636c8
commit e0b73c70f5
12 changed files with 194 additions and 62 deletions
+1 -1
View File
@@ -365,7 +365,7 @@ function keyDownHandler(e) {
function create_popup_window(url, title) {
newwindow=window.open(url,title,'height=600,width=500');
newwindow=window.open(url,title,'height=800,width=600');
if (window.focus) {newwindow.focus()}
return false;
}