Status Bar Typed

<script type="text/javascript">
<!--
var Message="Your message here";
var place=1;
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",300); //pause after typing
} else {
place++;
window.setTimeout("scrollIn()",50); //typing speed
} 
}

function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 100); //pause before restart
} else {
place++;
window.setTimeout("scrollOut()", 50); //erasing speed
}
}

// add onload="scrollIn()" to the opening BODY tag

// -->
</script>