home *** CD-ROM | disk | FTP | other *** search
- <ccResource>
- <ccTitle>
- Countdown
- </ccTitle>
- <ccCategory>
- Clocks
- </ccCategory>
- <ccDescription>
- <!-- Change coffeecount for length of time before redirect. (currently 5) --->
- <!-- Change redirectpage to the new URL (currently coffeecup.com) --->
- </ccDescription>
- <ccInstructions>
- Place the form where you would like the Countdown to appear.
- </ccInstructions>
- <ccHeadContent>
-
- </ccHeadContent>
- <ccBodyContent>
- <CENTER><form name="ccform1234">
- <input type="text" name="counter" value="" size="3">
- </form></CENTER>
-
- <SCRIPT LANGUAGE="JavaScript">
- <!-- Script supplied with CoffeeCup HTML Editor -->
- <!-- www.coffeecup.com --->
-
- var coffeecount = "5"
- var redirectpage = "http://www.coffeecup.com"
-
- function countdown() {
- if (coffeecount == "0") {
- document.location = redirectpage
- }
- else {
- coffeecount = coffeecount - 1
- document.ccform1234.counter.value = coffeecount
- setTimeout("countdown()", 1000)
- }
- }
- countdown()
-
- </SCRIPT>
- </ccBodyContent>
- <ccElementContent>
-
- <ccElementName></ccElementName>
- <ccElementAction></ccElementAction>
-
- </ccElementContent>
- <ccExtraData>
-
- </ccExtraData>
- </ccResource>