<!-- scrolling in box
var ScrollString="Jede Veranstaltung im Alpenraum wird bei einer Mindestteilnehmerzahl von 3 Personen zu beliebiger Termin- und Gebietswahl durchgefuehrt!   ";
var timer = 0;
function Scrollon() {
        document.box.boxtext.value = ScrollString;
        ScrollString=ScrollString.substring(1,ScrollString.length) 
                     + ScrollString.charAt(0);
        // decrease timeout value (50) to speed up, increase to slow down
        timer = setTimeout("Scrollon()",100) ; 
}
// end -->

