function confirm_and_go(url) {
  if (confirm('Вы уверены?'))
    location.href = url;
}
