<!-- 
function status_line(x) 
{ 
var msg = "*****  D a s  W e s t e n d  d a m a l s  u n d  h e u t e   *****";var out = " "; 
var c = 1; 
var e = 120; 
if (x > e) 
{ 
x--; 
var cmd="status_line(" + x + ")"; 
timerTwo=window.setTimeout(cmd,100); 
} 
else if (x <= e && x > 0) 
{ 
for (c=0 ; c < x ; c++) 
{ 
out+=" "; 
} 
out+=msg; 
x--; 
var cmd="status_line(" + x + ")"; 
window.status=out; 
timerTwo=window.setTimeout(cmd,100); 
} 
else if (x <= 0) 
{ 
if (-x < msg.length) 
{ 
out+=msg.substring(-x,msg.length); 
x--; 
var cmd="status_line(" + x + ")"; 
window.status=out; 
timerTwo=window.setTimeout(cmd,100); 
} 
else 
{ 
window.status=" "; 
timerTwo=window.setTimeout("status_line("+e+")",100); 
} 
} 
} 