function popUpWin(img, w, h) {
  var s = '<html><head><title>Super$eller</title></head>\n';
  s += '<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n';
  s += '<a href="javascript:close()"><img src="' + img + '" alt="Zamknij" border="0" /></a>\n';
  s += '</body></html>';
  var f = null;
  f = window.open('', '', 'width=' + w + ',height=' + h + ',left=' + ((screen.width/2)-w/2) + ',top=' + ((screen.height/2)-h/2) + ',menubar=no,toolbar=no,location=no,directories=no,scrollbars=no,resizable=no,status=no');
  if(f != null) {
    if(f.opener == null) {
      f.opener = self
    }
    f.document.clear();
    f.document.write(s);
    f.document.close();
  }
}
