<form name="wa"> <input type="text" size="50" name="banner" value=""> </form> <script language="Javascript"> <!-- // please keep these lines on when you copy the source // made by: Nicolas - http://www.javascript-page.com var message = "This is the Wacky Banner" var speed = 200 var x = 0 function initArray(n) { this.length = n; for (var i =1; i <= n; i++) { this[i] = ' ' } } wky = new initArray(7) wky[0] = "!!!" wky[1] = "@@@" wky[2] = "###" wky[3] = "$$$" wky[4] = "%%%" wky[5] = "^^^" wky[6] = "&&&" wky[7] = "***" function wacky() { var y = wky[x] document.wa.banner.value = y + message + y if (wky.length != x) { x++ } else { x = 0 } setTimeout("wacky()", speed); } wacky(); //--> </script>