<!-- ALTERNATING STATUS BAR MESSAGES --> <!-- This script goes in the HEAD the html file --> <script language="JavaScript" type="text/javascript"> <!-- Copyright 2002, Sandeep Gangadharan --> <!-- For more free scripts go to http://sivamdesign.com/scripts/ --> <!-- var change = 1; function alterStat() { var alternate1 = "Hello and Welcome to Sandeep's JavaScripts Page!"; var alternate2 = "Available here are some free and useful scripts."; var alternate3 = "They are free to use so long as the © notice is retained."; var alternate4 = "Have a look around and see if you find any script you like."; change++; if (change == 3) { window.status = alternate1; } if (change == 4) { window.status = alternate2; } if (change == 5) { window.status = alternate3; } if (change == 6) { window.status = alternate4; } if (change == 7) { window.status = '********'; change = 1; } window.setTimeout("alterStat();", 3000); } //--> </script> <!-- This is the script to be included in the BODY tag --> <!--Note the addition to the BODY tag--> <body onLoad="alterStat();">