function goConfirm(title, link){
   if(confirm(title) == true){
      window.location.href = link;
      return true;
   } else {
      return false;
   }
}

function goConfirmJustMsg(msg) {
  document.MM_returnValue = confirm(msg);
}
