function okno(adres,xx,yy)
{
	//var win;
	var str="";
	gora=50;
	lewo=Math.round((screen.width-655)/2);
	var param='width='+xx+', height='+yy+',top='+gora+',left='+lewo+',resizable=1,scrollbars=0,status=0';
	id_okno=window.open("","",param);
	str+='<head></head><body marginheight="0" marginwidth="0" style="margin-left : 0px; margin-top : 0px; margin-right : 0px; margin-bottom : 0px;"><img id="obraz" src="'+adres+'"></body>';
  	id_okno.document.open();
  	id_okno.document.write(str);
  	id_okno.document.close();
  	id_okno.window.focus();
	
}
