<!--
noweOkienko = null;
function Obrazek(w, h, src, opis){
  if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
  }else{
    aw=620;
    ah=470;
  }
  if(noweOkienko==null || noweOkienko.closed){

 Otwarcie=window.open('','grafika','toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,status=no,directories=no,resizable=yes,height='+h+',width='+w);
}
Otwarcie.document.open();
  Otwarcie.document.clear();
  Otwarcie.document.write(
    "<html><head><META HTTP-EQUIV='Content-Type' CONTENT='text/html; charset=iso-8859-2'><title>" + opis + "</title>\n"
    +"<style><!--\n"
    +"body{background-repeat:no-repeat}\n"
    +"--></style>\n"
    +"</head>\n"
    +"<body background=" + src + "></body>\n"
    +"</html>"
  );
  Otwarcie.document.close();
  Otwarcie.focus();
}
//-->
