
function WybierzKategorie(f, id, nazwa)
{
	width=400;
	height=200;
	wk = window.open('wybierzkategorie.php?id='+id+'&form='+f+'&nazwa='+nazwa, 'wk', 'menubar=no,statusbar=no,resizable=no,width='+width+',height='+height);
	x=(screen.width-width)/2;
	y=(screen.height-height)/2;
	wk.moveTo(x, y);
}

function ZapiszKategorie(w, f, idf, id, nazwaf, nazwa)
{
	w.document.forms[f].elements[idf].value=id;
	w.document.forms[f].elements[nazwaf].value=nazwa;
	w.focus();
	self.close();
}

