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

  1. <ccResource>
  2.   <ccTitle>
  3. Limit Time On Page
  4.   </ccTitle>
  5.   <ccCategory>
  6. Clocks
  7.   </ccCategory>
  8.   <ccDescription>
  9.  
  10.   </ccDescription>
  11.   <ccInstructions>
  12. Change the countdown (30) and destination URL to your own. You can also change the countdown message displayed.
  13.   </ccInstructions>
  14.   <ccHeadContent>
  15.   
  16.   </ccHeadContent>
  17.   <ccBodyContent>
  18. <SCRIPT LANGUAGE="Javascript">
  19. <!-- Script supplied with CoffeeCup HTML Editor -->
  20. <!--             www.coffeecup.com              -->
  21.  
  22. var coffeecountdown = "30"
  23.  
  24. function doCount() {
  25.     if (coffeecountdown > 0) {
  26.         coffeecountdown--
  27.     }
  28.     else {
  29.         document.location = "http://www.coffeecup.com"
  30.     }
  31.  
  32. window.status=coffeecountdown + " seconds left until redirect"
  33. setTimeout('doCount()',1000)
  34. }
  35.  
  36. doCount()
  37.  
  38. </SCRIPT>
  39.   </ccBodyContent>
  40.   <ccElementContent>
  41.   
  42.    <ccElementName></ccElementName>
  43.    <ccElementAction></ccElementAction>
  44.    
  45.   </ccElementContent>
  46.   <ccExtraData>
  47.  
  48.   </ccExtraData>
  49. </ccResource>