function obrazek(nazwa,wymiar1,wymiar2)
{
	center1=screen.width/2 - wymiar1/2;
	center2=screen.height/2 - wymiar2/2;
	okno=window.open("", "", "height="+wymiar2+",width="+wymiar1+", left="+center1+",top="+center2);
	okno.document.open();
	okno.document.write("<html>\n<head>\n<title>Powiększenie</title>\n</head>\n<body style=\"margin:0px\">\n<a href=javascript:window.close()><img src="+nazwa+" border=0 alt='Kliknij by zamkn±ć powiększenie'></a>\n</body>\n</html>");
	okno.document.close();
}

function user_info(id)
{
        x=215;
	y=315;
	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.location="redaktor.php?id="+id;
}
function redaktor(real,nick,email,www,gg,city,age)
{

if (gg!="")
  gg_cale='<img align="top" vspace="-2" hspace="0" src="http://www.gadu-gadu.pl/users/status.asp?id='+gg+'&styl=1"><A href="gg:'+gg+'">'+gg+'</A>';
else
  gg_cale="";

if (email!="")
 email = '<a href="mailto: '+email+'">'+email+'</a>';

        x=215;
	y=315;
	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.writeln("<html>");
	red.document.writeln("<head>");
	red.document.writeln("<title>"+real+"</title>");
	red.document.writeln("<style>");
	red.document.writeln("A:link {text-decoration:underline; color:white}");
	red.document.writeln("A:visited {text-decoration:underline; color:white}");
	red.document.writeln("A:active {text-decoration:underline; color:white} ");
	red.document.writeln("A:hover {text-decoration:underline; color:#F0B020}");		
	red.document.writeln("</style>");
	red.document.writeln("</head>");
	red.document.writeln("<body bgcolor='#0078C0' style='margin:3px; font-family:verdana; font-size:10px; color:white'>");
	red.document.writeln("<table width=300 cellspacing=2 cellpadding=5 border=0 style='font-family:verdana; font-size:10px; color:white' align=center>");
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>Imię&nbsp;i&nbsp;nazwisko:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln("<b>"+real+"</b>");
	red.document.writeln("</td>");
	red.document.writeln("</tr>");	
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>Nick:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln(nick);
	red.document.writeln("</td>");
	red.document.writeln("</tr>");	
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>E-mail:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln(email);
	red.document.writeln("</td>");
	red.document.writeln("</tr>");
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>Klasa:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln(www);
	red.document.writeln("</td>");
	red.document.writeln("</tr>");
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>Gadu-gadu:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln(gg_cale);
	red.document.writeln("</td>");
	red.document.writeln("</tr>");			
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>Miasto:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln(city);
	red.document.writeln("</td>");
	red.document.writeln("</tr>");		
	red.document.writeln("<tr>");
	red.document.writeln("<td width=110 background='gfx/red2.gif'>");
	red.document.writeln("<B>Wiek:</B>");
	red.document.writeln("</td>");
	red.document.writeln("<td width=190 background='gfx/red.gif'>");
	red.document.writeln(age);
	red.document.writeln("</td>");
	red.document.writeln("</tr>");		
	red.document.writeln("</table>");	
	red.document.writeln("<br><center><a href=javascript:window.close()>Zamknij okno</a></center>");	
	red.document.writeln("</body>");	
	red.document.writeln("</html>");
	red.document.close();
	
}