<!--
 noweOkienko = null;
 
 function okno(src, w, h, tytul){
if(window.screen){ aw=screen.availWidth;
 ah=screen.availHeight;}else{ aw=700; ah=450;}
if (noweOkienko==null || noweOkienko.closed){
 ustawienia= "left=" + (aw-w)/5 + ","
 +"screenX=" + (aw-w)/5 + "," +"width=" + w + "," +"location=no," +"top=" + (ah-h)/5 + ","
 +"screenY=" + (ah-h)/5 + "," +"status=no,"
 +"height=" + h + "," +"toolbar=no," +"directories=no,"
 +"innerWidth=" + w + "," +"innerHeight=" + h + ","
 +"menubar=no," +"scrollbars=no," +"resizable=no" 
 noweOkienko = window.open('', 'obrazek',ustawienia);
}noweOkienko.document.open();noweOkienko.document.clear();noweOkienko.document.write("<html><head><title>"+tytul+"</title>\n"+"</head>\n"+"<body  onClick=window.close(); leftmargin=0 topmargin=0>\n"+"<TABLE width=100% height=100% border=0><TR align=center><TD valign=center><IMG SRC="+src+"></TD></TR></TABLE>"+"</body>\n"+"</html>"
);noweOkienko.document.close();noweOkienko.focus();} 


 function okno2(src, w, h, tytul){
if(window.screen){ aw=screen.availWidth;
 ah=screen.availHeight;}else{ aw=700; ah=450;}
if (noweOkienko==null || noweOkienko.closed){
 ustawienia= "left=" + (aw-w)/5 + ","
 +"screenX=" + (aw-w)/5 + "," +"width=" + w + "," +"location=no," +"top=" + (ah-h)/5 + ","
 +"screenY=" + (ah-h)/5 + "," +"status=no,"
 +"height=" + h + "," +"toolbar=no," +"directories=no,"
 +"innerWidth=" + w + "," +"innerHeight=" + h + ","
 +"menubar=no," +"scrollbars=yes," +"resizable=yes" 
 noweOkienko = window.open('', 'obrazek',ustawienia);
}noweOkienko.document.open();noweOkienko.document.clear();noweOkienko.document.write("<html><head><title>"+tytul+"</title>\n"+"</head>\n"+"<body  onClick=window.close(); leftmargin=0 topmargin=0>\n"+"<TABLE width=100% height=100% border=0><TR align=center><TD valign=center><IMG SRC="+src+"></TD></TR></TABLE>"+"</body>\n"+"</html>"
);noweOkienko.document.close();noweOkienko.focus();} 


nowe = null;

function noweokno(url,width,height)
{
    nowe = window.open(url,'popup','width='+width+',height='+height+",scrollbars=yes");
    nowe.focus();
}


//-->
