<!--
noweOkienkoPz = null;
function gal_poziom(src, txt){
  if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
  }else{
    aw=510;
    ah=425;
  }
  if(noweOkienkoPz==null || noweOkienkoPz.closed){
    w=510;
    h=425;
    ustawienia=
     "left=" + (aw-w)/2 + ","
    +"top=" + (ah-h)/2 + ","
    +"screenX=" + (aw-w)/2 + ","
    +"screenY=" + (ah-h)/2 + ","
    +"width="+ w +","
    +"height="+ h +","
    +"innerWidth="+ w +","
    +"innerHeight="+ h +","
    +"toolbar=no,"
    +"location=no,"
    +"directories=no,"
    +"status=no,"
    +"menubar=no,"
    +"scrollbars=no,"
    +"resizable=no"
    noweOkienkoPz = window.open('','obrazek_pz',ustawienia);
  }
  noweOkienkoPz.document.open();
  noweOkienkoPz.document.clear();
  noweOkienkoPz.document.write(
     '<html><head>\n'
    +'<title>Galeria www.taniecmotyla.pl</title>\n'
    +'<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-2">\n'
    +'</head>\n'
    +'<body topmargin=0 marginwidth=0 leftmargin=0 marginheight=0 border=0 bgcolor=#000000 text=#ffffff onLoad=focus()>\n'
    +'<table align=center width="100%" height="100%"><tr><td><table valign="top"><tr><td align=center>\n'
	+'<br><img src='+ src +'><br><br>'+ txt +'\n'
	+'</td></tr></table></td></tr></table>\n'
    +'</body></html>'
  );
  noweOkienkoPz.document.close();
  noweOkienkoPz.focus();
}
//-->