// okno do pokazywania zdjec
function akt(id,x,y) {
	var wys=screen.height
	var szer=screen.width
	var left
	var top
	left=(szer-x)/2
	top=(wys-y)/2
  	o = window.open('pokaz_foto.php?id='+id+'', 'Galeria', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, copyhistory=0, status=0, left='+left+', top='+top+', width='+x+', height='+y+'')
	o.focus();
	//return false;
}

function show_gallery(id,id_gal,x,y) {
	var wys=screen.height
	var szer=screen.width
	var left
	var top
	left=(szer-x)/2
	top=(wys-y)/2
  	o = window.open('show_gallery.php?id='+id+'&id_gal='+id_gal+'', 'Galeria', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, copyhistory=0, status=0, left='+left+', top='+top+', width='+x+', height='+y+'')
	o.focus();
	//return false;
}
function show_news_img(id,id_new,x,y) {
	var wys=screen.height
	var szer=screen.width
	var left
	var top
	left=(szer-x)/2
	top=(wys-y)/2
  	o = window.open('show_news_img.php?id='+id+'&id_new='+id_new+'', 'Galeria', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=auto, resizable=0, copyhistory=0, status=0, left='+left+', top='+top+', width='+x+', height='+y+'')
	o.focus();
	//return false;
}

// -->