<script type="text/javascript">
<!--
scrollMsg = " Here is some scrolling text... "
count = 0
function scrollIt() {
msgFront = scrollMsg.substring(count,scrollMsg.length)
msgBack = scrollMsg.substring(0,count)
window.status = msgFront + msgBack
if(count < scrollMsg.length){
count++
}
else{
count = 0
}
setTimeout("scrollIt()",100)
}
// add onload="scrollit()" to the opening BODY tag
//-->
</script>