<!--

// JavaScript Programming by Jeff Lindeman, jeff@wavemedia.net ©2002


        browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 3 )))

        if ( browser) {
               goon = new Image;
               goon.src = "images/goon.gif";
               gooff = new Image;
               gooff.src = "images/gooff.gif";
               nexton = new Image;
               nexton.src = "images/nexton.gif";
               nextoff = new Image;
               nextoff.src = "images/nextoff.gif";
               previouson = new Image;
               previouson.src = "images/previouson.gif";
               previousoff = new Image;
               previousoff.src = "images/previousoff.gif";
               agoon = new Image;
               agoon.src = "images/agoon.gif";
               agooff = new Image;
               agooff.src = "images/agooff.gif";
               anexton = new Image;
               anexton.src = "images/anexton.gif";
               anextoff = new Image;
               anextoff.src = "images/anextoff.gif";
               apreviouson = new Image;
               apreviouson.src = "images/apreviouson.gif";
               apreviousoff = new Image;
               apreviousoff.src = "images/apreviousoff.gif";
               }

       function img_act(imgName)
       {
               if ( browser) 
               {
               imgOn = eval(imgName + "on.src");
               document [imgName].src = imgOn;
               }
       }

       function img_inact(imgName)
       {
               if ( browser) 
               {
               imgOff = eval(imgName + "off.src");
               document [imgName].src = imgOff;
               }
       }

// -->

