function otworz(tytul_okna,nazwa,szer,wys) {

config='toolbar=no,location=no,directories=no,status=no,menubar=no,top=20, left=20 ';  //width='+(szer+200)+',height='+(wys+100)+',
config += 'scrollbars=no,resizable=no'
podglad=window.open('','',config)
podglad.document.write('<head>');
podglad.document.write('<TITLE>'+tytul_okna+'</title>');
podglad.document.write('</head>');
podglad.document.write('<script language="javascript">');
podglad.document.write('setTimeout(');
podglad.document.write('"window.close()');
podglad.document.write(';",30000)');
podglad.document.write('</');
podglad.document.write('script>');
podglad.document.write('<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
podglad.document.write('<p><img src="'+nazwa+'">') //+ '" width="'+szer+'" height="'+wys+'">');
podglad.document.write('</p></body>');
podglad.focus();
}

function otworz1(tytul_okna,nazwa,wpis,szer,wys) {

config='toolbar=no,location=no,directories=no,status=no,menubar=no, width='+szer+',height='+(wys+30)+', top=20, left=20 ';  //width='+szer+',height='+(wys+50)+',
config += 'scrollbars=no,resizable=no'
podglad=window.open('','',config)
podglad.document.write('<head>');
podglad.document.write('<TITLE>'+tytul_okna+'</title>');
podglad.document.write('<link rel="stylesheet" type="text/css" href="style/x_white.css">');
podglad.document.write('</head>');
podglad.document.write('<body bgcolor="#000000" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">');
podglad.document.write('<p><img src="'+nazwa+'" width="'+szer+'" height="'+wys+'"><h2 align="center" style="text-align: center">'+wpis+'</p></body>');
podglad.focus();
}



