<!--

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


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

        if ( browser) {
               homeon = new Image;
               homeon.src = "/images/homeon.gif";
               homeoff = new Image;
               homeoff.src = "/images/home.gif";
               abouton = new Image;
               abouton.src = "/images/abouton.gif";
               aboutoff = new Image;
               aboutoff.src = "/images/about.gif";
               proactiveon = new Image;
               proactiveon.src = "/images/proactiveon.gif";
               proactiveoff = new Image;
               proactiveoff.src = "/images/proactive.gif";
               howon = new Image;
               howon.src = "/images/howon.gif";
               howoff = new Image;
               howoff.src = "/images/how.gif";
               commonon = new Image;
               commonon.src = "/images/commonon.gif";
               commonoff = new Image;
               commonoff.src = "/images/common.gif";
               scientificon = new Image;
               scientificon.src = "/images/scientificon.gif";
               scientificoff = new Image;
               scientificoff.src = "/images/scientific.gif";
               printableon = new Image;
               printableon.src = "/images/printableon.gif";
               printableoff = new Image;
               printableoff.src = "/images/printable.gif";
               purchaseon = new Image;
               purchaseon.src = "/images/purchaseon.gif";
               purchaseoff = new Image;
               purchaseoff.src = "/images/purchase.gif";
               boxon = new Image;
               boxon.src = "/images/boxon.jpg";
               boxoff = new Image;
               boxoff.src = "/images/boxoff.jpg";
               optinon = new Image;
               optinon.src = "/images/optinon.gif";
               optinoff = new Image;
               optinoff.src = "/images/optin.gif";
               emailon = new Image;
               emailon.src = "/images/emailon.gif";
               emailoff = new Image;
               emailoff.src = "/images/email.gif";
               companyon = new Image;
               companyon.src = "/images/companyon.gif";
               companyoff = new Image;
               companyoff.src = "/images/company.gif";
               presson = new Image;
               presson.src = "/images/presson.gif";
               pressoff = new Image;
               pressoff.src = "/images/press.gif";
               privacyon = new Image;
               privacyon.src = "/images/privacyon.gif";
               privacyoff = new Image;
               privacyoff.src = "/images/privacy.gif";
               disclaimeron = new Image;
               disclaimeron.src = "/images/disclaimeron.gif";
               disclaimeroff = new Image;
               disclaimeroff.src = "/images/disclaimer.gif";
               contacton = new Image;
               contacton.src = "/images/contacton.gif";
               contactoff = new Image;
               contactoff.src = "/images/contact.gif";
               blinkson = new Image;
               blinkson.src = "/images/blinkson.gif";
               blinksoff = new Image;
               blinksoff.src = "/images/blinks.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;
               }
       }

// -->

