Back to Scripts page
Click in the text area below, select all and copy to grab the script
Script listing:
<HTML> <HEAD> <TITLE>Image Test</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from old browsers bGrounds = new Array("red","white","blue") thisBG = 0 bgColorCount = bGrounds.length function rotateBG() { if (document.images) { thisBG++ if (thisBG == bgColorCount) { thisBG = 0 } document.bgColor=bGrounds[thisBG] setTimeout("rotateBG()", 3 * 1000) } } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=RED onLoad="rotateBG()"> <H1 ALIGN=CENTER>Welcome to Steve's<BR> Wacko Internet Conspiracy Page!</H1> <P><H3>Have you ever felt that people out there were out to get you? Well, we feel that way also, and we think we know why they're out to get you, too. Assassinations, secret world-government takeovers, crop circles, frogs falling from the sky, black helicopters... we've got the REAL story behind them all.</H3> <H1 ALIGN=CENTER>The truth is in here. Somewhere.</H1> </BODY> </HTML>