


<!-- Hide the script from old browsers --

var browser = new Object();
var previous = 0;

browser.os = _get_os();
browser.version = _get_version();

if (navigator.appName.substring(0,8) == "Netscape") {
        browser.flip = 1;
} else if (browser.version >= 4000) {
        browser.flip = 1;
} else {
        browser.flip = 0;
}

function _get_version() {
        return Math.round(parseFloat(navigator.appVersion) * 1000);
}

function _get_os() {
        if (navigator.appVersion.indexOf("Mac") > 0) {
                return "MAC";
        } else if ((navigator.appVersion.indexOf("Windows 98")) > 0) {
                return "W98";
        } else if ((navigator.appVersion.indexOf("Win95")) > 0) {
                return "W95";
        }
}

if (browser.flip == 1){

        one_i = new Image(155,24);
        one_i.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/bt_organisation_ge_over.gif";
        one_o = new Image(155,24);
        one_o.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/bt_organisation_ge.gif";
        one_d = new Image(291,213);
        one_d.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/im_organisation_ge_over.gif";

        two_i = new Image(155,24);
        two_i.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/bt_organisation_ge_capital_over.gif";
        two_o = new Image(155,24);
        two_o.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/bt_organisation_ge_capital.gif";
        two_d = new Image(291,213);
        two_d.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/im_organisation_ge_capital_over.gif";
        
        three_i = new Image(155,24);
        three_i.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/bt_organisation_eef_over.gif";
        three_o = new Image(155,24);
        three_o.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/bt_organisation_eef.gif";
        three_d = new Image(291,213);
        three_d.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/im_organisation_eef_over.gif";
        
		
}

function flipImageOn (image) {
        if (browser.flip == 1) {

                if (image == 1) {
                        document.one.src = one_i.src;
                        document.description.src = one_d.src;
                }

                if (image == 2) {
                        document.two.src = two_i.src;
                        document.description.src = two_d.src;
                }
                
                if (image == 3) {
                        document.three.src = three_i.src;
                        document.description.src = three_d.src;
                }
                

        }
        return;
}

function flipImageOff (image) {
        if (browser.flip == 1) {

                if (image > 0) {
                        document.one.src = one_o.src;
                        document.two.src = two_o.src;
                        document.three.src = three_o.src;
                        document.description.src = "/" + varStruct + "/images/WhoWeAre/" + varCountry + "/im_organisation_off.gif";
                }

        }
        return;
}


//-->

