

function zeig_gross_bild ( bild_nummer , rownr ) {

 // window.document.images[0].src = grosse_bilder [ bild_nummer ].src ;

 versteck_gross_bild ( 1 )  ;
 versteck_gross_bild ( 2 )  ;
 versteck_gross_bild ( 3 )  ;
 versteck_gross_bild ( 4 )  ;
 versteck_gross_bild ( 5 )  ;
 versteck_gross_bild ( 6 )  ;
 versteck_gross_bild ( 7 )  ;
 versteck_gross_bild ( 8 )  ;


 if ( document.getElementById ) {
     block = document.getElementById("bigPic" + rownr );
  } else {
    block = document.bigPic;
  }
  block.style.zIndex = 10 ;
  block.src =  grosse_bilder [ bild_nummer ].src ;

 if ( document.getElementById ) {
     block = document.getElementById("bigPicDiv"  + rownr );
  } else {
    block = document.bigPicDiv;
  }
  block.style.zIndex = 10 ;
  block.style.top = "30px" ;
}


function versteck_gross_bild ( rownr ) {
 if ( document.getElementById ) {
     block = document.getElementById("bigPicDiv"  + rownr );
  } else {
    block = document.bigPicDiv;
  }
  block.style.zIndex = 5 ;
    block.style.top = "-4000px" ;

}



