
var scrollMsg="Polish Theatre Institute in the US>>> <<<Polski Instytut Teatralny w Ameryce>>> <<<Polish Theatre Institute in the US>>> <<<Polski Instytut Teatralny w Ameryce"
var msgSpace=">>> <<<"
var beginPos=0
function scrollingMsg(){
document.msgForm.scrollingMsg.value=scrollMsg.substring(beginPos,scrollMsg.length)+msgSpace+scrollMsg.substring(0,beginPos)
	beginPos = beginPos + 1
	if (beginPos> scrollMsg.length){
	   beginPos=0
	}
	window.setTimeout("scrollingMsg()",200)
	}
