function del(url, nazwa) {
	var tekst;
	//	tekst = 'Czy chcesz skasowac\n' + '"' + nazwa + '"';
	if (confirm(nazwa)){
		location.replace(url);
	}
}

function otworz(url, p) {
	var w;
	if(w) w.close();
	w = window.open(url, 'w', 'width=2, height=2');
	if (window.focus) {w.focus()} 
}



