This commit is contained in:
Ross
2021-02-06 14:55:38 +00:00
parent edb487bf39
commit 54678bfc86
+10 -1
View File
@@ -361,4 +361,13 @@ function keyDownHandler(e) {
//window.scrollBy(0, -25);
break;
}
}
}
function create_popup_window(url, title) {
newwindow=window.open(url,title,'height=600,width=500');
if (window.focus) {newwindow.focus()}
return false;
}
window.create_popup_window = create_popup_window