function ask(question, url) {
	if (confirm(question)) {
		document.location.href = url;
	}
}
