<!--
var msg = "Christian Weiss - Seilkran Syncrofalke - Holzschlägerung und Bringung          ++++++ ."
var delay =200
var timerId
var maxCount = 0
var currCount = 1

function scrollMsg() {
	//set the number of times scrolling message should appear
	if (maxCount == 0) {
		maxCount = 3 * msg.length
	}
	window.status = msg
	// keep track of how many characters have have been displayed
	currCount++
	// shift first character of msg to end of msg
	msg = msg.substring (1, msg.length) + msg.substring (0, 1)
	// test whether we've reached the maximum character count
	if (currCount >= maxCount) {
		timerId = 0         // zero out the timer
		window.status = ""  // clear the status bar
		return              // break out of this function
	} else {
		// recursive call to this function
		timerId = setTimeout("scrollMsg()", delay)
	}
}
// -->

