<!-- BLINKING STATUS BAR MESSAGE --> <!-- 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 blinkStat() { change++; if (change == 2) { window.status = "Hello and Welcome to Sandeep's JavaScripts Page!"; } if (change == 3) { window.status = " "; } if (change == 4) { change = 1 } window.setTimeout("blinkStat();", 150); } //--> </script> <!-- This is the script to be included in the BODY tag --> <!--Note the addition to the BODY tag--> <body onLoad="blinkStat();">