function confirmD(q, u) {
	if (confirm(q)) {
		location.replace(u);
	} else return;
}
