]> git.mxchange.org Git - mailer.git/blobdiff - templates/de/html/surfbar/surfbar_frame_top.tpl
Spaces removed...
[mailer.git] / templates / de / html / surfbar / surfbar_frame_top.tpl
index 8038a14cadd969f06c672038758d8db8697bdafe..d6f48f9f25e1f5836d793185d38c26ab45c3d19e 100644 (file)
@@ -7,10 +7,10 @@
                 class="surfbar_reload">$content[curr_reload]</span> von <span
                 class="surfbar_max">$content[max_urls]</span> im Reload&laquo;<br />
 
-                &raquo;<a href="$content[url]" target="_blank">Aktuelle Seite in neuem
-                Fenster &ouml;ffnen</a>&laquo;<br />&nbsp;[<a
-                 href="{!URL!}/modules.php?module=index&amp;what=logout">Ausloggen</a>|<a
-                 href="javascript:close()">Schliessen</a>]
+               &raquo;<a href="$content[url]" target="_blank">Aktuelle Seite in neuem
+               Fenster &ouml;ffnen</a>&laquo;<br />&nbsp;[<a target="_parent"
+                href="{!URL!}/modules.php?module=login&amp;what=logout">Ausloggen</a>|<a
+                href="javascript:window.close()">Schliessen</a>]
 
                &raquo;{!MAIN_TITLE!} ist f&uuml;r den Inhalt nicht verantwortlich!&laquo;
        </td>
@@ -25,13 +25,22 @@ var countDown = null;
 
 function Init() {
        countDown = window.setInterval("StartCounter()", 1000);
-       parent.surfbar_url.location.href = "$content[url]";
+       window.setTimeout("InitCounter()", 500);
 }
 
 function Confirm() {
        parent.surfbar_url.location="{!URL!}/surfbar.php?id=$content[id]&check=$content[check]&salt=$content[salt]";
 }
 
+function ReloadThis() {
+       this.location.reload();
+}
+
+function InitCounter() {
+       parent.surfbar_url.location.href = "$content[url]";
+       counter.innerHTML = $content[reload];
+}
+
 function StartCounter() {
        if (currCounter < 1) {
                return false;
@@ -43,11 +52,10 @@ function StartCounter() {
        if (currCounter == 0) {
                clearInterval(countDown);
                Confirm();
-               this.location.reload();
+               window.setTimeout("ReloadThis()", 500);
        }
 }
 
-counter.innerHTML = $content[reload];
 Init();
 
 //-->