summaryrefslogtreecommitdiff
path: root/template/Deutsch/library.js
diff options
context:
space:
mode:
Diffstat (limited to 'template/Deutsch/library.js')
-rw-r--r--template/Deutsch/library.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/template/Deutsch/library.js b/template/Deutsch/library.js
new file mode 100644
index 0000000..fdf4a0b
--- /dev/null
+++ b/template/Deutsch/library.js
@@ -0,0 +1,26 @@
+//
+// 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");
+}
+function del(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;
+}
+function mdel() {
+ check=confirm("Ausgewählte Timer wirklich löschen?");
+ if(check) document.FormName.submit();
+}
+function callurl( url ) {
+ image = new Image();
+ image.src = url;
+}
+function popup(URL) {
+ window.open(URL, '_new', 'width=450, height=250, scrollbars=auto, resizable=yes');
+}
+