function imgopen(pict, winName, features) {
okno = window.open('', winName, features); 
dok = okno.window.document; 
dok.write('<html><head><title>Caissa - click to close</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a href="javascript:close();" title="close this window"><img src="zdjecia/'+pict+'.jpg" border="0"/></a></body></html>');
dok.close(); 
okno.focus();
}

function showPic (whichpic) {
 if (document.getElementById) {document.getElementById('placeholder').src = whichpic.href;
  if (whichpic.title) {document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
  } else {document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}