function deleteReply(ids) {
	for (var index in ids) {
		document.getElementById("polozka_" + ids[index]).checked = false;
	}
	return false;
}

