9e39f077fe021b30ffce62c0bedc67e9106e1bd2
[mailer.git] / templates / de / html / surfbar / surfbar_stopped.tpl
1 <div align="center">
2         <div class="member_table dashed" style="width:500px">
3                 <div class="member_title2 bottom2">
4                         <strong>Surfbar angehalten!</strong>
5                 </div>
6
7                 Keine URLs mehr verf&uuml;rgbar oder Datenbankfehler liegt vor.<br />
8                 Neustart in <span id="surfbar_restart">$content[start]</span> Sekunden
9         </div>
10 </div>
11
12 <script language="JavaScript" type="text/javascript">
13 <!--
14 var counter = "$content[restart]";
15 var timer   = document.getElementById("surfbar_restart");
16
17 function Restart() {
18         this.location.reload();
19 }
20
21 function Counter () {
22         if (counter == 0) {
23                 Restart();
24         } else {
25                 counter--;
26                 timer.innerHTML = counter;
27         }
28 }
29
30 function Init () {
31         window.setInterval("Counter()", 1000);
32         timer.innerHTML = "$content[restart]";
33 }
34
35 window.setTimeout("Init()", 500);
36
37 //-->
38 </script>