function popup(id,x,y,gal) {
	url	=	'foto.php?id='+id;
	if(gal) {
		url += '&gal='+gal
	}
	params	= 'width='+(x+200)+',height='+(y+50);
	f		=	window.open(url,'foto',params);
	f.focus();
}