<!--
// 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";

// Create image objects, preload all active and inactive images.
if (br== "n3") { 
    img1on = new Image(130,23);           	     
    img1on.src = "http://www.leetwo.com/imagesfr/btnhome1fr.gif";      

    img1off = new Image(130,23);             
    img1off.src = "http://www.leetwo.com/imagesfr/btnhomefr.gif"; 

    img2on = new Image(130,23);          	     
    img2on.src = "http://www.leetwo.com/imagesfr/btnprofile1fr.gif";      

    img2off = new Image(130,23);              
    img2off.src = "http://www.leetwo.com/imagesfr/btnprofilefr.gif";

    img3on = new Image(130,23);           	     
    img3on.src = "http://www.leetwo.com/imagesfr/btncustomer1fr.gif";      

    img3off = new Image(130,23);              
    img3off.src = "http://www.leetwo.com/imagesfr/btncustomerfr.gif"; 

    img4on = new Image(130,23);          	     
    img4on.src = "http://www.leetwo.com/imagesfr/btnquality1fr.gif";      

    img4off = new Image(130,23);             
    img4off.src = "http://www.leetwo.com/imagesfr/btnqualityfr.gif"; 

    img5on = new Image(130,23);          	     
    img5on.src = "http://www.leetwo.com/imagesfr/btncareer1fr.gif";      

    img5off = new Image(130,23);              
    img5off.src = "http://www.leetwo.com/imagesfr/btncareerfr.gif"; 

    img6on = new Image(130,23);          	     
    img6on.src = "http://www.leetwo.com/imagesfr/btncontact1fr.gif";      

    img6off = new Image(130,23);              
    img6off.src = "http://www.leetwo.com/imagesfr/btncontactfr.gif"; 

    img7on = new Image(130,23);           	     
    img7on.src = "http://www.leetwo.com/imagesfr/btnabout1fr.gif";      

    img7off = new Image(130,23);              
    img7off.src = "http://www.leetwo.com/imagesfr/btnaboutfr.gif";

    img8on = new Image(130,23);           	     
    img8on.src = "http://www.leetwo.com/imagesfr/btnlogistics1fr.gif";      

    img8off = new Image(130,23);              
    img8off.src = "http://www.leetwo.com/imagesfr/btnlogisticsfr.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");
    	}
    }
//--> 
