<!--
// Random Image Generator for JavaScript by Phil Barnes -- http://www.cyberus.ca/~barnes/phil/
// Works with NN 2+, MSIE 3+
// You are free to copy and distribute, please include (at least) the first comment in your code.
// This version is limited to 60 images, but could easily be adapted to 1000 by using getTime() method.
// This program can easily be adapted to for banner advertisment linking purposes without CGI and SSI problems.
// Make sure to pre-define the arrays in the HEAD of the document.
// Note: In JavaScript Arrays (as in C++, PERL etc...) 0 is the first 

ImageFiles = new Array (24);     // The number on this line indicates how many images there are.
        ImageFiles[0] = "adsa.gif";
        ImageFiles[1] = "crest.jpg";
        ImageFiles[2] = "cowich.gif";
        ImageFiles[3] = "nanaimo.gif";
        ImageFiles[4] = "valley.gif";
        ImageFiles[5] = "victoria.gif";
        ImageFiles[6] = "barnet.gif";
        ImageFiles[7] = "wlake.gif";
        ImageFiles[8] = "terrace.gif";
        ImageFiles[9] = "scwa.gif";
        ImageFiles[10] = "rugged.gif";
        ImageFiles[11] = "pentflyf.gif";
        ImageFiles[12] = "mission.gif";
        ImageFiles[13] = "paukku.gif";
        ImageFiles[14] = "rrgclogo.gif";
        ImageFiles[15] = "nsfglogo.gif";
        ImageFiles[16] = "gr_header.gif";
        ImageFiles[17] = "psalogo2.jpg";
        ImageFiles[18] = "sosa.gif";
        ImageFiles[19] = "pqfgalogo.jpg";
        ImageFiles[20] = "nprg.gif";
		ImageFiles[21] = "trout2.gif";
		ImageFiles[22] = "pcdhfc.gif";
        ImageFiles[23] = "psa.gif";
        ImageFiles[24] = "lakewindemere.png";

		
LocationURI = new Array (24);  // You can use abreviated URIs or Full URLs, depending on how you are set up.
        LocationURI[0] = "http://members.shaw.ca/adsaclub/";
        LocationURI[1] = "http://www.island.net/~outdoors/";
        LocationURI[2] = "http://www.geocities.com/Yosemite/Rapids/9223";
        LocationURI[3] = "http://www.nanaimo.net/community/fishgame.htm";
        LocationURI[4] = "http://www.seaside.net/boz/club.htm";
        LocationURI[5] = "http://www.geocities.com/Yosemite/7340";
        LocationURI[6] = "http://www.corp.direct.ca/barnetrifleclub/";
        LocationURI[7] = "http://www.stardate.bc.ca/sportsmen/";
        LocationURI[8] = "http://www.stormpages.com/corporation/rod_gun/index.htm";
        LocationURI[9] = "http://www.scwa.bc.ca/";
        LocationURI[10] = "http://www.cancom.net/cgi-bin/community/directory.cgi?SITE=tahsis&LISTING=57";
        LocationURI[11] = "http://members.shaw.ca/pff/";
        LocationURI[12] = "http://www.missionrodandgun.com/";
        LocationURI[13] = "http://paukkukoukku.8k.com/";
        LocationURI[14] = "http://www.rrgc.homestead.com/";
        LocationURI[15] = "http://www.nsfgc.ca/index2.htm";
        LocationURI[16] = "http://www.geocities.com/gr_rodandgun/";
        LocationURI[17] = "http://peachlandsportsmens.ca";
        LocationURI[18] = "http://www.sosa.ca/";
        LocationURI[19] = "http://www.pqfg.com/index.htm";
        LocationURI[20] = "http://www.nprg.ca/";
        LocationURI[21] = "http://www.nrgc.bc.ca/";
        LocationURI[22] = "http://www.pcdhfc.com/";
        LocationURI[23] = "http://www.pacificshooters.com/";
        LocationURI[24] = "http://www.lwdrodgun.org";

ImageText = new Array (24);
        ImageText[0] = "Alberni";
        ImageText[1] = "Courtenay";
        ImageText[2] = "Cowichan";
        ImageText[3] = "Nanaimo";
        ImageText[4] = "Valley";
        ImageText[5] = "Victoria";
        ImageText[6] = "Barnet";
        ImageText[7] = "Williams Lake";
        ImageText[8] = "Terrace";
        ImageText[9] = "Spruce City";
        ImageText[10] = "Thasis";
        ImageText[11] = "Penticton Flyfishers";
        ImageText[12] = "Mission & District Rod and Gun";
        ImageText[13] = "Finnish Canadian";
        ImageText[14] = "Richmond Rod and Gun Club";
        ImageText[15] = "North Shore";
        ImageText[16] = "Gold River";
        ImageText[17] = "Peachland";
        ImageText[18] = "Southern Okanagan";
        ImageText[19] = "Parksville Qualicum";
        ImageText[20] = "North Peace Rod & Gun Club";
        ImageText[21] = "Nelson District Rod & Gun Club";
        ImageText[22] = "Port Coquitlam & District Hunting & Fishing Club";
        ImageText[23] = "Pacific Shooters Association";
        ImageText[24] = "Lake Windermere District Rod & Gun Club";
        


       


D = new Date();
Seconds = D.getSeconds();
Random = Seconds%24;     // The 21 in this line indicates how many images there are.

LT = "<";
GT = ">";
// -->
