var message="African Institute for Economic Development and Planning"
var position=100
var output=" "
var count=0
function scroll() {
for (count=0;count<position;count++) {
output+=" "
}
if (position>=0) {
output+=message }
else {
output = message.substring(-position,message.length)
}
window.status=output
output=" "
position--
if (position < -(message.length)) {
window.status=""
position=100
}
setTimeout ('scroll()', 100)
}