function imgopen(pict,winName,features) { 
okno = window.open('',pict,features); 
dok = okno.window.document; 
dok.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-2"><title>LZSzach - '+winName+'</title></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a href="javascript:close();" title="zamknij okno"><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;
 }
}