
function OtworzOkno (obrazek, nazwa, tytul, szer, wys ) {
		szerokno=szer+10; wysokno=wys+30;
		okno = window.open("", nazwa, "scrollbars=auto,resizable=yes,status=no,height="+wysokno+",width="+szerokno);	
		okno.document.write("<html><head><title>"+tytul+"</title></head>");
		okno.document.write("<body topmargin=0 leftmargin=0>");
		okno.document.write("<p align=center><img border=0 src="+obrazek+" width="+szer+" height="+wys+"></p>");
		okno.document.write("</body></html>");
		okno.document.close();
		okno.focus();
		okno.resizeTo(szerokno, wysokno);
}

