tag, as in this page */
// bring msg width to form control width. Add messages with new msg lines.
function banner(msg,ctrlwidth) {
msg = " "+msg
msg = " This page is still under construction!"+msg
msg = " "+msg
msg = " "+msg
msg = " They include AP shots, Circus Shots, and Blue Monday Stills!"+msg
msg = " "+msg
msg = " Be sure to explore the links at the bottom of this page."+msg
msg = " Pictures, pictures and more pictures!"+msg
newmsg = msg
while (newmsg.length < ctrlwidth) {
newmsg += msg
}
// Set up the form and form field.
document.write ('')
var bannerid = null
rollmsg() //get the banner rolling
}
function rollmsg() {
NowMsg=document.Banner.banner.value
NowMsg=NowMsg.substring(1,NowMsg.length)+NowMsg.substring(0,1)
document.Banner.banner.value = NowMsg
bannerid=setTimeout("rollmsg()",200)
}
// End of script -->
|