if (document.images) {
button11 = new Image(); button11.src = "homes.gif";
button12 = new Image(); button12.src = "homer.gif";
button21 = new Image(); button21.src = "optiks.gif";
button22 = new Image(); button22.src = "optikr.gif";
button31 = new Image(); button31.src = "uhrens.gif";
button32 = new Image(); button32.src = "uhrenr.gif";
button41 = new Image(); button41.src = "schmucks.gif";
button42 = new Image(); button42.src = "schmuckr.gif";
button51 = new Image(); button51.src = "kontakts.gif";
button52 = new Image(); button52.src = "kontaktr.gif";

im1 = new Image(); im1.src = "leiste1.gif";
im2 = new Image(); im2.src = "leiste2.gif";
im3 = new Image(); im3.src = "leiste3.gif";
im4 = new Image(); im4.src = "leiste4.gif";
im5 = new Image(); im5.src = "leiste5.gif";
im6 = new Image(); im6.src = "leiste6.gif";
im7 = new Image(); im7.src = "leiste7.gif";
im8 = new Image(); im8.src = "leiste8.gif";
}

   function esm01(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}


function display_impressum() {
myWindow=window.open('impressum.htm','newWin','scrollbars=auto,status=no,toolbar=no,width=500,height=400')
}
