function okno(src,x,y)
{
	if(y==0)
	{
		y=screen.availHeight;
  	x+=20;
  	y-=30;
  	scrolbars = 'scrollbars=yes';
	}
	else{
		x+=10;
		y+=10;
		scrolbars = 'scrollbars=no';
	}
  newwindow=window.open("","","height="+y+",width="+x+",menubar=no,toolbar=no,location=no,directories=no,status=no,"+scrolbars+",resizable=no,fullscreen=no,channelmode=no");
  newwindow.document.writeln("<html>");
  newwindow.document.writeln("<head>");
  newwindow.document.writeln("<title>CFL</title>");
  newwindow.document.writeln('<style type="text/css">');
	newwindow.document.writeln('img {');
	newwindow.document.writeln('border: 1px solid #CF0004;');
	newwindow.document.writeln('}');
	newwindow.document.writeln('</style>');
  newwindow.document.writeln("</head>");
  newwindow.document.writeln("<body style='margin:0;padding:0' onLoad='moveTo(0,0);'>");
  newwindow.document.write("<table cellspacing='0' cellpadding='0' height='100%' width='100%'><tr><td align='center' valign='middle'><img src='"+src+"'"+" name='obrazek' border='0'></td></tr></table>");
  newwindow.document.writeln("</body>");
  newwindow.document.writeln("</html>");
  newwindow.document.close();
 }
