 var pos = 0;
 function ScrollMessage(msg)
 {
	window.status = msg.substring(pos, msg.length) + " " + msg.substring(0,pos);
 	pos++;
 	if (pos > msg.length) pos = 0;
 	window.setTimeout("ScrollMessage('"+msg+"')", 250);
 }

