<!-- TYPEWRITTEN STATUS BAR MESSAGE --> <!-- This goes in 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 change = 0; var messages = " Hello and Welcome to Sandeep's JavaScripts Page!! " + // modify this line as required " "; // leave this blank line alone window.status = " "; function typeIt() { if (messages.length > 0) change++; window.status += messages.charAt(change); SD = setTimeout("typeIt()", 150) // change the # 150 on the left to adjust the speed the // message is typed. The smaller the # the faster the speed. if (change == messages.length-1) { window.status = " "; change = 0; } return true; } typeIt() //--> </script>