ScrollSpeed = 150;
ScrollChars = 1;
function SetupTicker() {
msg = "+++  Täglich aktuelle Gutscheincodes auf rabattsparer.de  +++  Alle Updates im wöchentlichen Newsletter  ";
RunTicker();}
function RunTicker() {
window.setTimeout('RunTicker()',ScrollSpeed);
window.status = msg;
msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);}
SetupTicker();
