function onSure(txt, url, wndw){
  if (confirm(txt)){
    wndw.location = url;
  }
}


