var objOkno;
function noweOkno(url, width, height, title){
	if(objOkno){objOkno.close();}
	var top=100, left=300;
	width = parseInt(width,10) + 20;
	height = parseInt(height,10) + 20;
	if(screen){top = (screen.height-height)/2; left = (screen.width-width)/2;}
	objOkno=window.open("","foto","width="+width+",height="+height+",top="+top+",left="+left+",toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no");
	objOkno.document.open();
	objOkno.document.writeln("<html><head>");
	objOkno.document.writeln("<title>"+title+"</title>");      
	objOkno.document.writeln("</head>");
	objOkno.document.writeln("<body style=\"margin:0; font-family:Verdana; font-size:10px; background: #FFFFFF;\">");
//	objOkno.document.writeln("<div style=\"text-align: center; width: 100%;\">");
	objOkno.document.writeln("<a href='javascript:window.close();' title='close'><img src='"+url+"' border='0'></a>");
//	objOkno.document.writeln("<br><br><a href='javascript:window.close();'>close</a>");
//	objOkno.document.writeln("</div>");
	objOkno.document.writeln("</body></html>");
	objOkno.document.close();
	objOkno.focus();
	return;
}

var objOknoZawartosc;
function noweOknoZawartosc(url, width, height){
	if(objOknoZawartosc){objOknoZawartosc.close();}
	objOknoZawartosc=window.open(url,"zawartosc","width="+width+",height="+height+",top=50,left=50,toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no");
	objOknoZawartosc.focus();
	return;
}

