/**
 *  @author Krku
 */

function delete_confirm(button) {
	var answer;

	answer = confirm("Czy na pewno chcesz to usun±æ?");

	if (!answer) {
		button.href = '#';
	}
}