This commit is contained in:
Ross
2021-02-05 14:36:45 +00:00
parent c3fa92351d
commit 0be255b779
2 changed files with 16 additions and 4 deletions
+7
View File
@@ -361,4 +361,11 @@ function keyDownHandler(e) {
//window.scrollBy(0, -25);
break;
}
}
function popitup(url, title) {
newwindow=window.open(url,title,'height=600,width=500');
if (window.focus) {newwindow.focus()}
return false;
}