<!--
function ladeBild(pfad,titel,width,height)
  {
    spaceLeft=18;
    spaceTop=5
    breite = width + spaceLeft;
    hoehe = height + spaceTop;
    fensterNr = Math.round(Math.random()*100)+1;
    window.open('bild.php?pfad=' + pfad + '&titel=' + titel,fensterNr,'width=' + breite + ',height=' + hoehe + ',scrollbars=yes');
  }
//-->