1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
|
<script type="text/javascript">
<!--
ende=<? echo"$beginnantwort"; ?>;
iHTML=false;
function printCounter()
{
out='<form name="fCD"><input type="text"size="7"name="CD"></form>';
if(document.getElementsByTagName&&document.getElementsByTagName('title')[0].innerHTML)
{iHTML=true;
out='<span id="CD">f </span>';
}
return out;
}
function countDown()
{
out='OK';
now=new Date();now=parseInt(now.getTime()/1000);
if(now<ende)
{
out=parseInt((ende-now)/60)+':';
sek=(ende-now)%60;
if(sek<10){out+='0';}
out+=sek;
}
else
(self oder top).location.href = 'irgendwohin.htm';
if(iHTML){document.getElementById('CD').innerHTML=out;}
else{document.fCD.CD.value=out;}
if(now<ende){setTimeout("countDown()",1000);}
}
window.onload=countDown;
//-->
</script>
<script type="text/javascript">
<!--
document.write(printCounter());
//-->
</script>
|