<!-- SCROLLING TEXT BOX 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; var gap = message.length; while (i < gap) { i++; message = " " + message; } function statScroll() { document.scroll.msg.value = message.substring(count, message.length); count++; if (message.length == count) { count = 0; } window.setTimeout("statScroll()", 120); } window.onload = statScroll; //--> </script> <!-- This goes in the BODY the html file --> <form name="scroll"> <input type="text" name="msg" value=" " size="40" style="font-family:courier"> </form>