$(function () {
	$('a.poll-remove').click(function (e) {
		if (!confirm(gettext('Are you sure you want to delete this poll?'))) {
			e.preventDefault();
		}
	});
});
