<!--
noweOkienko = null;

function lupa(src, w, h, tytul){
  if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
  }else{
    aw=640;
    ah=450;
  }
  if (!tytul) tytul="Obrazek";
  if(noweOkienko==null || noweOkienko.closed){
    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"
    noweOkienko = window.open('','obrazek',ustawienia);
  }
  noweOkienko.document.open();
  noweOkienko.document.clear();
  noweOkienko.document.write(
     "<html><head>\n"
	+"<title>" + tytul + "</title>"
	+"<meta name=Pragma content=no-cache>\n"
	+"<meta http-equiv=\"Refresh\" content=\"300\">\n"
    +"<style>\n"
    +"body{background-repeat:no-repeat}\n"
    +"</style>\n"
    +"</head>\n"
    +"<body scroll=no marginwidth=0 marginheight=0 topmargin=0 leftmargin=0></body>\n"
	+"<a href=\"javascript:window.close()\">"
	+"<img src=\"" + src + "\" width=" + w + " height=" + h + " border=0 alt=\"zamknij\">"
    +"</a>"
    +"</html>"
  );
  noweOkienko.document.close();
  noweOkienko.focus();
}

//-->



