function jumpTo (path, confirmMessage) {
	var answer = confirm(confirmMessage);
	if (answer == 1) { location.href = path };
}
