function redaktor(real,nick,email,www,gg,city,age,kom)
{
    x=240;
	y=310;
	center1=screen.width/2 - y/2;
	center2=screen.height/2 - x/2 - 30;
	red=window.open("", "", "height="+x+",width="+y+", left="+center1+",top="+center2);
	red.document.open();
	red.document.write("<html>");
	red.document.write("<head>");
	red.document.write("<title>"+real+"</title>");
	red.document.write("<style>");
	red.document.write("A:link {text-decoration:underline; color:white}");
	red.document.write("A:visited {text-decoration:underline; color:white}");
	red.document.write("A:active {text-decoration:underline; color:white} ");
	red.document.write("A:hover {text-decoration:underline; color:#F0B020}");		
	red.document.write("</style>");
	red.document.write("</head>");
	red.document.write("<body bgcolor='#0078C0' style='margin:3px; font-family:verdana; font-size:10px; color:white'>");
	red.document.write("<table width=300 cellspacing=2 cellpadding=5 border=0 style='font-family:verdana; font-size:10px; color:white' align=center>");
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Imię i nazwisko:</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write(real);
	red.document.write("</td>");
	red.document.write("</tr>");	
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Nick:</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write(nick);
	red.document.write("</td>");
	red.document.write("</tr>");	
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>E-mail:</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write("<A HREF='mailto:"+email+"' TARGET='_blank'>"+email+"</A>");
	red.document.write("</td>");
	red.document.write("</tr>");
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Strona www:</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write("<A HREF='"+www+"' TARGET='_blank'>"+www+"</A>");
	red.document.write("</td>");
	red.document.write("</tr>");		
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Gadu-gadu:</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write(gg);
	red.document.write("</td>");
	red.document.write("</tr>");	
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Miasto:</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write(city);
	red.document.write("</td>");
	red.document.write("</tr>");		
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Data ur.</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write(age);
	red.document.write("</td>");
	red.document.write("</tr>");		
	red.document.write("<tr>");
	red.document.write("<td width=110 bgcolor='#005CB0'>");
	red.document.write("<B>Tel. Komórkowy</B>");
	red.document.write("</td>");
	red.document.write("<td width=190 background='gfx/red.gif'>");
	red.document.write(kom);
	red.document.write("</td>");
	red.document.write("</tr>");	
	red.document.write("</table>");	
	red.document.write("<br><center><a href=javascript:window.close()>Zamknij okno</a></center>");	
	red.document.write("</body>");	
	red.document.write("</html>");
	red.document.close();
	
}