// Detect if browser is Netscape 3 + or IE 4 +.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";
// Rollover code 
    if (br== "n3") { 
	img6on = new Image();         
    img6on.src = "images/nav01_on.gif";
	img7on = new Image();         
    img7on.src = "images/nav02_on.gif";
	img8on = new Image();         
    img8on.src = "images/nav03_on.gif";
	img9on = new Image();         
    img9on.src = "images/nav04_on.gif";
	img10on = new Image();         
    img10on.src = "images/nav05_on.gif";
	img11on = new Image();         
    img11on.src = "images/subnav01_on.gif";
	img12on = new Image();         
    img12on.src = "images/subnav02_on.gif";
	img13on = new Image();         
    img13on.src = "images/subnav03_on.gif";
	img14on = new Image();         
    img14on.src = "images/subnav04_on.gif";
	img15on = new Image();         
    img15on.src = "images/subnav05_on.gif";
	img16on = new Image();         
    img16on.src = "images/subnav06_on.gif";
	img17on = new Image();         
    img17on.src = "images/subnav07_on.gif";
	img18on = new Image();         
    img18on.src = "images/subnav08_on.gif";
	img19on = new Image();         
    img19on.src = "images/subnav09_on.gif";
	img20on = new Image();         
    img20on.src = "images/subnav10_on.gif";
	img21on = new Image();         
    img21on.src = "images/subnav11_on.gif";
	img22on = new Image();         
    img22on.src = "images/subnav12_on.gif";
	img23on = new Image();         
    img23on.src = "images/subnav13_on.gif";
	img24on = new Image();         
    img24on.src = "images/subnav14_on.gif";
	img25on = new Image();         
    img25on.src = "images/related01a_on.gif";
	img26on = new Image();         
    img26on.src = "images/related01b_on.gif";
	img27on = new Image();         
    img27on.src = "images/related01c_on.gif";
	img28on = new Image();         
    img28on.src = "images/related01d_on.gif";
	img29on = new Image();         
    img29on.src = "images/related01e_on.gif";
	img30on = new Image();         
    img30on.src = "images/related01f_on.gif";
	
	
	
	img6off = new Image();         
    img6off.src = "images/nav01_off.gif";
	img7off = new Image();         
    img7off.src = "images/nav02_off.gif";
	img8off = new Image();         
    img8off.src = "images/nav03_off.gif";
	img9off = new Image();         
    img9off.src = "images/nav04_off.gif";
	img10off = new Image();         
    img10off.src = "images/nav05_off.gif";
	img11off = new Image();         
    img11off.src = "images/subnav01_off.gif";
	img12off = new Image();         
    img12off.src = "images/subnav02_off.gif";
	img13off = new Image();         
    img13off.src = "images/subnav03_off.gif";
	img14off = new Image();         
    img14off.src = "images/subnav04_off.gif";
	img15off = new Image();         
    img15off.src = "images/subnav05_off.gif";
	img16off = new Image();         
    img16off.src = "images/subnav06_off.gif";
	img17off = new Image();         
    img17off.src = "images/subnav07_off.gif";
	img18off = new Image();         
    img18off.src = "images/subnav08_off.gif";
	img19off = new Image();         
    img19off.src = "images/subnav09_off.gif";
	img20off = new Image();         
    img20off.src = "images/subnav10_off.gif";
	img21off = new Image();         
    img21off.src = "images/subnav11_off.gif";
	img22off = new Image();         
    img22off.src = "images/subnav12_off.gif";
	img23off = new Image();         
    img23off.src = "images/subnav13_off.gif";
	img24off = new Image();         
    img24off.src = "images/subnav14_off.gif";
	img25off = new Image();         
    img25off.src = "images/related01a_off.gif";
	img26off = new Image();         
    img26off.src = "images/related01b_off.gif";
	img27off = new Image();         
    img27off.src = "images/related01c_off.gif";
	img28off = new Image();         
    img28off.src = "images/related01d_off.gif";
	img29off = new Image();         
    img29off.src = "images/related01e_off.gif";
	img30off = new Image();         
    img30off.src = "images/related01f_off.gif";
	
	
    }
// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}
// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}

