function confDelete(adress)
{
if (confirm('Czy na pewno chcesz usunąć?'))
    {
	document.location.href = adress;
    }
}
