function setScrollText(s) {
 scrollCount=0
 maxScroll=127
 scrolledText=s
}
function space(n) {
 result=""
 for(var i=0;i<n;++i) result+=" "
 return result
}
function scrollText() {
 var text=space(maxScroll-scrollCount)+scrolledText
 ++scrollCount
 scrollCount %= (maxScroll+1)
 window.defaultStatus=text
 window.setTimeout("scrollText()",150)//The last value in this line controls the speed
}

setScrollText("Support your Alumni Association. Pay your Membership online with PayPal!!!")
scrollText()
