function noweokno(URL, szerokosc, wysokosc,tytul,alt) 
{wymiary = "left=0,top=0,width=" + (szerokosc) + ",height=" + (wysokosc);
text = "<html><head><title>"+tytul+"</title></head><body topmargin=0 leftmargin=0 merinwidth=0 marginheight=0><img src='"+URL+"' alt='"+alt+"'></body></html>";
podglad = window.open("", "podglad", wymiary);
podglad.document.open();
podglad.document.write(text);
podglad.document.close();}
