function ZmienZdjecie(ID)
{
  var obraz = document.getElementById('ZdjecieGlowne');
  obraz.src = "zdjecia/duze/"+ID+".jpg";
  var link  = document.getElementById('linkPokazDuze');
  link.href = 'javascript:PokazDuze('+ID+')';
}

function PokazDuze(ID)
{
  var noweOkno = window.open('', '', 'width=700, height=500, toolbar=no, directories=no, menubar=no, locations=no, status=no, scrollbars=yes, resizeable=yes, fullscreen=no');
  noweOkno.document.open();
  
  noweOkno.document.writeln("<html><head><title>smieci-stop Obrazek</title></head>");
  noweOkno.document.writeln("<body leftmargin=0 topmargin=0>");
  noweOkno.document.writeln("<table width=100% height=100%>");
  noweOkno.document.writeln("<tr><td valign=middle align=center><a href=\"javascript:window.close()\"><img src=\"zdjecia/normalne/"+ID+".jpg\" border=0></a></td></tr>");
  noweOkno.document.writeln("<tr><td valign=middle align=center><a href=\"javascript:window.close()\">Zamknij okno</a></td></tr>");
  noweOkno.document.writeln("</table>");
  noweOkno.document.writeln("</body></html>");
  noweOkno.document.close();
  noweOkno.focus();
}
