var msg ="...Herzlich Willkommen...Bonjour...welcome...God Dag";
var spacer = "...   ...";
var pos = msg.length;


function loc() {
 window.location.href = "start.html";
}

function scm() {
 document.lauf.text1.value = msg.substring(pos,msg.length)
  +msg.substring(0,pos);
 pos--;
 if (pos == 0) 
  pos = msg.length; 
 window.setTimeout("scm()",200);
}

function weiter() {
 scm();
 window.setInterval("loc();",6000);
}

 
