<!--

// 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";
    if (bName == "Netscape" && bVer >= 3) browsa="n3";
    if (bName == "Microsoft Internet Explorer" && bVer >= 4) browsa="ie4";
	
// Create image objects, preload all active and inactive images.
    if (br== "n3") { 
    img1on = new Image();          // Create four image objects for the 
    img1on.src = "../images/home_on.gif";  // active images; the images displayed
    img2on = new Image();          // when the mouse moves over the 
    img2on.src = "../images/services_on.gif";  // rollovers.
    img3on = new Image();
    img3on.src = "../images/clients_on.gif";
    img4on = new Image();
    img4on.src = "../images/personnel_on.gif";
    img5on = new Image();
    img5on.src = "../images/contact_on.gif"
    img6on = new Image();
    img6on.src = "../images/minutes_on.gif"
    img7on = new Image();
    img7on.src = "../images/links_on.gif"
	
    
    img1off = new Image();          // Create four image objects for the 
    img1off.src = "../images/home_off.gif"; // inactive images; the images 
    img2off = new Image();          // displayed when the mouse moves off
    img2off.src = "../images/services_off.gif"; // the rollovers.
    img3off = new Image();
    img3off.src = "../images/clients_off.gif";
    img4off = new Image();
    img4off.src = "../images/personnel_on.gif";
    img5off = new Image();
    img5off.src = "../images/contact_off.gif";
    img6off = new Image();
    img6off.src = "../images/minutes_off.gif";
    img7off = new Image();
    img7off.src = "../images/links_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");
    }
}

// -->
