<script language="javascript">
var count = 0;
var delay = 250;
var text = "...Welcome to my page...";
function scroll () {
window.status = text.substring (count, text.length) + text.substring (0, count)
if (count < text.length)
count ++;
else
count = 0;
setTimeout ("scroll()", delay);
}
</script>