<!-- Redirect Script 1.0                      -->
<!-- Original:  Ryan Joy (ryan@joyserve.net)  -->
<!-- Web Site:  http://www.joyserve.net       -->
<!-- Copyright 2002. All rights reserved.     -->
<!------------------------------------------------------------------------------------------->
<!-- NOTES:                                                                                -->
<!--    This script redirects users to a random URL after a short delay.  It can           -->
<!--    handle up to 6000 URLs.                                                            -->
<!--    Just copy:     URL_list[URL_index++] = "http://www.yourdomain.com";                -->
<!--    Paste this code under the other URL_lists and update the URL                       -->
<!-- VARIABLES:                                                                            -->
<!--    script_delay  - specifies the amount of time to delay before the script executes   -->
<!--    URL_list      - array that holds the URLs                                          -->
<!--    ss            - local system time second                                           -->
<!--    number_of_URL - holds the number of URLs in URL_list                               -->
<!--    random_URL    - generates a random URL                                             -->
<!--    URL_location  - stores the value of URL_list[random_URL]                           -->
<!------------------------------------------------------------------------------------------->


<!-- Begin

   var script_delay = 1000;       //(2500 = one second)

   var URL_index = 0;
   URL_list = new Array();
   URL_list[URL_index++] = "http://www.bizbrokerage.net";

   var time = new Date();
   var x = time;
   var y = x.getDate();
   var z = x.getYear();    
   var hs = x.getHours();  
   var ms = x.getMinutes();
   var ss = x.getSeconds();

   var number_of_URL = URL_list.length;
   var random_URL = (ss) % number_of_URL;
   var URL_location = URL_list[random_URL];

   function redirect()
      {  window.location = URL_location;  }

   document.onLoad = setTimeout('redirect()', script_delay);

//  End -->