function displayWindow(grafika, widthx, heightx, tekst, tytul) {
	// Marcin Chada http://chada.waw.pl
	Win = self.open("","okno",'width=10,height=10,resizable=no,scrollbars=no,menubar=no,left=0,top=0');
	Win.close();
	Win = self.open("","okno",'width=' + widthx + ',height=' + heightx + ',resizable=no,scrollbars=no,menubar=no,left=0,top=0');
	Win.document.write("<HTML>\n<HEAD>\n<TITLE>" + tytul + "</TITLE>\n");
	Win.document.write("<META HTTP-EQUIV='content-type' CONTENT='text/html; charset=iso-8859-2'>\n");
	Win.document.write("</HEAD>\n<BODY STYLE=\"margin: 0px\" MARGINWIDTH=\"0\" LEFTMARGIN=\"0\" TOPMARGIN=\"0\" MARGINHEIGHT=\"0\">\n");
	Win.document.write("<IMG SRC=" + grafika + " BORDER=0 ALT=\"" + tekst + "\">\n");
	Win.document.write("</BODY>\n</HTML>\n");
	Win.focus();
}