
/*  Thanks for stopping by and having a look at our code, but please remember...
       Site content, design, coding, scripting and tagging copyright © 2000-2005 by Diane R. Tamburello. All rights reserved.
     pht : brDetect.js : lu:050226
*/

    <!-- 
    var isNew = 0;
    var isNS6 = 0;
    var isNS4 = 0;
    var isIE6 = 0;
    var isIE5 = 0;
    var isIE4 = 0;
    var isIE3 = 0;
    var isOld = 0;
    var brNameVer = ((navigator.appName) + (parseInt(navigator.appVersion)));  // var for name & version

       if (parseInt(navigator.appVersion) >= 7) {
          isNew = 1
        }
           else if (brNameVer == "Netscape5") {
             isNS6 = 1;
            }
           else if (brNameVer == "Netscape4") {
             isNS4 = 1;
            }
           else if (brNameVer == "Microsoft Internet Explorer6") {
             isIE6 = 1;
            }
           else if (brNameVer == "Microsoft Internet Explorer5") {
             isIE5 = 1;
            }
           else if (brNameVer == "Microsoft Internet Explorer4") {
             isIE4 = 1;
            }
           else if (brNameVer == "Microsoft Internet Explorer3") {
             isIE3 = 1;
            }
         else {
           isOld = 1;
       }

// -->
