home *** CD-ROM | disk | FTP | other *** search
/ PC User 2005 May / CD / PCU0505CD.iso / software / full / coffecup / files / html2005.exe / %MAINDIR% / Javascript / Countdown.xml < prev    next >
Encoding:
Text File  |  2005-02-16  |  1.2 KB  |  53 lines

  1. <ccResource>
  2.   <ccTitle>
  3. Countdown
  4.   </ccTitle>
  5.   <ccCategory>
  6. Clocks
  7.   </ccCategory>
  8.   <ccDescription>
  9. <!-- Change coffeecount for length of time before redirect. (currently 5) --->
  10. <!-- Change redirectpage to the new URL (currently coffeecup.com) ---> 
  11.   </ccDescription>
  12.   <ccInstructions>
  13. Place the form where you would like the Countdown to appear.
  14.   </ccInstructions>
  15.   <ccHeadContent>
  16.   
  17.   </ccHeadContent>
  18.   <ccBodyContent>
  19. <CENTER><form name="ccform1234">
  20. <input type="text" name="counter" value="" size="3">
  21. </form></CENTER>
  22.  
  23. <SCRIPT LANGUAGE="JavaScript">
  24. <!-- Script supplied with CoffeeCup HTML Editor -->
  25. <!--            www.coffeecup.com              --->
  26.  
  27. var coffeecount = "5"
  28. var redirectpage = "http://www.coffeecup.com"
  29.  
  30. function countdown() {
  31.   if (coffeecount == "0") {
  32.     document.location = redirectpage
  33.   }
  34.   else {
  35.     coffeecount = coffeecount - 1
  36.     document.ccform1234.counter.value = coffeecount
  37.     setTimeout("countdown()", 1000)
  38.   }
  39. }
  40. countdown()
  41.  
  42. </SCRIPT>
  43.   </ccBodyContent>
  44.   <ccElementContent>
  45.   
  46.    <ccElementName></ccElementName>
  47.    <ccElementAction></ccElementAction>
  48.    
  49.   </ccElementContent>
  50.   <ccExtraData>
  51.  
  52.   </ccExtraData>
  53. </ccResource>