diff options
Diffstat (limited to 'template/Deutsch/library.js')
-rw-r--r-- | template/Deutsch/library.js | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/template/Deutsch/library.js b/template/Deutsch/library.js index fdf4a0b..e27dce5 100644 --- a/template/Deutsch/library.js +++ b/template/Deutsch/library.js @@ -2,25 +2,33 @@ // this is part of VDR Admin // function open_help(url) { - window.open(url, "_blank", "width=500, height=460, resizable=yes, scrollbars=yes, status=no, toolbar=no"); + window.open(url, "_blank", "width=500, height=460, resizable=yes, scrollbars=yes, status=no, toolbar=no"); } + function del(suffix) { - check=confirm("Timer löschen?"); - if(check) window.location.href=suffix; + check=confirm("Timer löschen?"); + if(check) window.location.href=suffix; } + function change(suffix) { - check=confirm("Timerstatus ändern?"); - if(check) window.location.href=suffix; + check=confirm("Timerstatus ändern?"); + if(check) window.location.href=suffix; } + function mdel() { - check=confirm("Ausgewählte Timer wirklich löschen?"); + check=confirm("Ausgewählte Timer wirklich löschen?"); if(check) document.FormName.submit(); } + function callurl( url ) { image = new Image(); - image.src = url; + image.src = url; } + function popup(URL) { - window.open(URL, '_new', 'width=450, height=250, scrollbars=auto, resizable=yes'); + window.open(URL, '_new', 'width=450, height=250, scrollbars=auto, resizable=yes'); } +function toolbar(URL) { + window.open(URL, '_new', 'width=200, height=50'); +} |