okno = null;
function duze(src, w, h){
  if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
  }else{
    aw=640;
    ah=450;
  }
  if(okno==null || okno.closed){
    ustawienia=
    "width=" + w + ","
    +"height=" + h + ","
    +"toolbar=no,"
    +"location=no,"
    +"directories=no,"
    +"status=no,"
    +"menubar=no,"
    +"scrollbars=no,"
    +"resizable=no"
    okno = window.open('','obraz',ustawienia);
  }
  okno.document.open();
  okno.document.write(
     "<html><head>\n"
    +"<title>Large View</title>\n"
    +"</head>\n"
    +"<body leftMargin=0 topMargin=0 MARGINWIDTH='0' MARGINHEIGHT='0'>\n"
    +"<img src=\"" + src +"\">\n"
    +"</body>\n"
    +"</html>"
  );
  okno.focus();
}
