function opis(nazwa,opis,zdjecie1,zdjecie2,zdjecie3,zdjecie4,zdjecie5,zdjecie6) {
	screenWidth = 900;
   screenHeight = 700;
	oknoRysuj = window.open('', 'oknoRysuj', 'toolbars=no, location=no, scrollbars, menubar=no, resizable, width='+screenWidth+', height='+screenHeight+', left=20, top=20');
	oknoRysuj.document.write ("<HTML><HEAD><TITLE>");
	oknoRysuj.document.write (nazwa);
	oknoRysuj.document.write("</TITLE><link rel=\"stylesheet\" href=\"http://www.inter-auto-technika.com.pl/style/main.css\" type=\"text/css\"></HEAD><BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0 BGCOLOR=#FFFFFF BGPROPERTIES=FIXED><TABLE WIDTH=100% CELLSPACING=0 CELLPADDING=0 BORDER=0><TR><TD  align=\"center\"><H1>");
	oknoRysuj.document.write (nazwa);	
	oknoRysuj.document.write("</H1></TD></TR><TR><TD>");
	oknoRysuj.document.write (opis);
	oknoRysuj.document.write("</TD></TR><TR><TD  align=\"center\">");
	if (zdjecie1 != "")
	{
	oknoRysuj.document.write("<BR><IMG SRC=");
	oknoRysuj.document.write (zdjecie1);
	oknoRysuj.document.write("><BR>")
	}
	if (zdjecie2 != "")
	{
	oknoRysuj.document.write("<BR><IMG SRC=");
	oknoRysuj.document.write (zdjecie2);
	oknoRysuj.document.write("><BR>")
	}
	if (zdjecie3 != "")
	{
	oknoRysuj.document.write("<BR><IMG SRC=");
	oknoRysuj.document.write (zdjecie3);
	oknoRysuj.document.write("><BR>")
	}
	if (zdjecie4 != "")
	{
	oknoRysuj.document.write("<BR><IMG SRC=");
	oknoRysuj.document.write (zdjecie4);
	oknoRysuj.document.write("><BR>")
	}
	if (zdjecie5 != "")
	{
	oknoRysuj.document.write("<BR><IMG SRC=");
	oknoRysuj.document.write (zdjecie5);
	oknoRysuj.document.write("><BR>")
	}
	if (zdjecie6 != "")
	{
	oknoRysuj.document.write("<BR><IMG SRC=");
	oknoRysuj.document.write (zdjecie6);
	oknoRysuj.document.write("><BR>")
	}
	oknoRysuj.document.write("<TR><TD align=\"center\"><A HREF='javascript: self.close()'><BR>Zamknij</A></TD></TR></TABLE></BODY></HTML>");
	oknoRysuj.document.close();
	oknoRysuj.focus();
}
