function loadpage() {
    browver= parseInt(navigator.appVersion);
    browtype = navigator.appName;
    browsertype = "old";
    if (browtype == "Netscape" && !(browver < 3)) {
        browsertype = "new";
    }
    if (browtype == "Microsoft Internet Explorer" && !(browver < 4)) {
        browsertype = "new";
    }
    if (browsertype == "new") {
        thetimer = setTimeout("changeimage()", 3000);
        banneradcode = 0;
        listofimages = new Array(4);
        listofimages[0] = "anim_alstom.gif"
        listofimages[1] = "anim_tyco.gif"
        listofimages[2] = "anim_merck.gif"
        listofimages[3] = "anim_cap.gif"
    }
    imagesource = "/img/logos/" + listofimages[0]
    window.document.logosbanner.src = imagesource
}

function changeimage(){
    if (browsertype == "new") {
        banneradcode = Math.floor(Math.random()*4)
        imagesource = "/img/logos/" + listofimages[banneradcode]
        window.document.logosbanner.src = imagesource
        thetimer = setTimeout("changeimage()", 3000);
   } else if (browsertype == "old") { }
}