// okno do pokazywania zdjec
function foto(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;
}
// -->