
    normalClose = new Image();
    normalClose.src = "/Images/schliessen-normal.png";
    highlightClose = new Image();
    highlightClose.src = "/Images/schliessen-over.png";

function bildwechsel2(bildId,neuesBild) {
      window.document.getElementById(bildId).src = neuesBild.src;
    }


function bildwechsel(bildNr,bildObjekt) {
      if (bildObjekt == normalClose || bildObjekt == highlightClose) {
        window.document.images[bildNr].src = bildObjekt.src;
      } else window.document.images[bildNr-1].src = bildObjekt.src;
    }

function zellenklasse(zellenId,klasse) {
      document.getElementById(zellenId).setAttribute("class",klasse);
    }

function grossansichtFenster(pfad,titel,bildBreite,bildHoehe) {
      bildBreite += 30;
      bildHoehe += 95;
      var attributString = "width="+bildBreite+", height="+bildHoehe+", resizable=no";
      var bildFenster = window.open(pfad,titel,attributString);
      bildFenster.resizeTo(bildBreite,bildHoehe);
      bildFenster.focus();
    }

function schliessen() {
      close();
    }
