// Title: Galeria
// Author: Jakub Chmielewski <jakub.chmielewski@doskomp.lodz.pl>

licz=0;
function sfw(sciezka,szer,wys,tytul) {
    config='left='+((screen.availWidth-szer)/2)+',top='+((screen.availHeight-wys)/2)+',width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
    kitekSC='okno' + licz;
    stadion=window.open('',kitekSC,config)
    stadion.document.write('<HTML><HEAD>');
    stadion.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
    stadion.document.write('<TITLE>'+tytul+'</title>');
    stadion.document.write('<script language="javascript">');
    stadion.document.write('setTimeout(');
    stadion.document.write('"self.close()');
    stadion.document.write(';",70000)');
    stadion.document.write('</');
    stadion.document.write('script>');
    stadion.document.write('</HEAD>');
    stadion.document.write('<body  bgcolor=white leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 oncontextmenu=\'javascript:self.close();\'>');
    stadion.document.write('<DIV align=center><a href=# oncontextmenu="javascript:self.close();" onclick="javascript:  self.close();"><img src='+sciezka+' border=0 oncontextmenu=\'javascript:self.close();\'></A></DIV>');
    stadion.document.write('</body></html>');
    stadion.focus();
//    licz+=1;
}


