<!-- SCROLLING STATUS BAR MESSAGE --> <!-- This goes into the HEAD of the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2003, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- var message = " Hello and Welcome to Sandeep's Nook!! "; var count = 0; var i = 0; while (i < 125) { i++; message = " " + message; } function statScroll() { window.status = message.substring(count, message.length); count++; if (message.length == count) { count = 0; } window.setTimeout("statScroll()", 120); } statScroll(); //--> </script>