function PopupImage(img,szer,wys) {
  tytul="Stanisław Drzewiecki";
  var szer1 = parseInt(szer) + 4;
  var wys1 = parseInt(wys) + 4;
  var winl = (screen.availWidth - szer) / 2;
  var wint = (screen.availHeight - wys) / 2; 
  w=window.open("","","width="+szer1+",height="+wys1+",top="+wint+",left="+winl+",toolbar=no,scrollbars=no,resizable=no,status=no,location=no,menubar=no,");	
  w.document.write("<HTML><HEAD><TITLE>"+tytul+"</TITLE></HEAD>");
  w.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0 style=\"background-color: #000000;\"><table cellpadding=0 cellspacing=0 style=\"height: 100%; width: 100%\" border=0><tr><td style=\"height: 100%; text-align: center; vertical-align: middle\" valign=\"middle\"><IMG src=\""+img+"\" galleryimg='no' style=\"border: 2px solid #505050; margin: auto\" height=\""+wys+"\" width=\""+szer+"\"></td></tr></table>");
  w.document.write("</BODY></HTML>");
  w.document.close();
		}
		
function PopupBig(img,szer,wys) {
  tytul="Stanisław Drzewiecki";
  var szer1 = parseInt(szer) + 4;
  var wys1 = parseInt(wys) + 40;
  var winl = (screen.availWidth - szer) / 2;
  var wint = (screen.availHeight - wys - 40) / 2; 
  w=window.open("","","width="+szer1+",height="+wys1+",top="+wint+",left="+winl+",toolbar=no,scrollbars=no,resizable=no,status=no,location=no,menubar=no,");	
  w.document.write("<HTML><HEAD><TITLE>"+tytul+"</TITLE>");
  w.document.write("<style type=\"text/css\"><!-- a.online { display: block; border: 2px solid #505050; margin-top: 5px; margin-bottom: 5px; background-color: #404040; text-align: center; padding: 3px; font-family: sans-serif; font-size: 11px; font-weight: bold;} a.online:link, a.online:visited {text-decoration: none; color: #FF0000;} a.online:active, a.online:hover {text-decoration: none; color: #FFFFFF; background-color: #000000; } --></style></head>");
  w.document.write("<BODY leftMargin=0 topMargin=0 marginwidth=0 marginheight=0 style=\"background-color: #000000;\"><table cellpadding=0 cellspacing=0 style=\"height: 100%; width: 100%\" border=0><tr><td style=\"height: 100%; text-align: center; vertical-align: middle\" valign=\"middle\"><IMG src=\""+img+"\" galleryimg='no' style=\"border: 2px solid #505050; margin: auto; display: block;\" height=\""+wys+"\" width=\""+szer+"\">");
  w.document.write("<a href=\"img_big/force_download.php?file="+img+"\" class=\"online\">&gt;&gt;&gt;&gt; DOWNLOAD FINE VERSION OF AN IMAGE &lt;&lt;&lt;&lt;</a>");
  w.document.write("</td></tr></table></BODY></HTML>");
  w.document.close();
		}
