
This is a Javascript form banner. It is more attention-grabbing than the Scrolling Banner.
The source...
<script language="javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var msg=" This is a Form Banner. "
+"It is part of my collection of Javascript. "
+"If you want to make more lines to put your message on, copy this line, "
+"and be sure to not continue on with the script by pressing enter."
var banTime1;
function banner(){
msg=msg.substring(1,msg.length)+msg.substring(0,1);
document.banner.text.value=msg;
banTime1=setTimeout("banner()",100);
}
//-->
</script>
<BODY onload="banner()">
<center>
<FORM NAME="banner"><INPUT TYPE="text" NAME="text" SIZE=50></FORM>
</center>