
/*  Thanks for stopping by and having a look at our code, but please remember...
       Site content copyright © 2000 by Diane R. Tamburello. All rights reserved.
       Site design, coding, scripting and tagging Copyright © 2000 by Ronald J. Tamburello. All rights reserved.       email: ron@JournalOne.com
     pht : brDetect.js : lu:001227
*/

    <!-- 
    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;
       }

// -->
