var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=0}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";win=window.open(mypage,myname,settings);
win.focus();}


var Nowe=null;
function Otworz(w,s,src,tx)
{
	if (Nowe!=null)
	{
		Nowe.close();
		Nowe=null;
	}
	Nowe=window.open("", "","left=0, top=0, toolbar=no,menubar=no,location=no,personalbar=no,scrollbars=no,status=no,directories=no,resizable=no,height="+w+",width="+s);
	Nowe.document.write("<html><head><title>Zdjecia</title></head><body text=#FFFFFF bgcolor=#f5f5f5><div align=center><center><p align=center><img src=jpg/n_logo.jpg></p><table border=0 cellpadding=0 cellspacing=0 bordercolor=#f5f5f5 width=95%><tr><td align=center width=100%><img src="+src+" width=480></font></td></tr></table></center></div><p align=center><b><font face=Arial CE size=1 color=#000000>:: "+tx+" ::<br>:: &copy; poloklub.pl 2004 :: </font></b></p></body></html>");
	Nowe.focus();
}