// wyswietlenie obrazka w nowym oknie o okreslonych rozmiarach
function showImg(imgUrl, imgWidth, imgHeight) {
  var showImage = window.open(imgUrl,'','scrollbars=no,menubar=no,height='+imgHeight+',width='+imgWidth+',resizable=no,toolbar=no,location=no,status=no');
}
