function delConfirm(url) {
	confirmAndGo('Biztos benne, hogy törölni szeretné?', url)
}

function confirmAndGo(q, url) {
	if (confirm(q)) {
		location.href = url;
	}
}

function windowOpen(url) {
	open(url);
}
