function valide(msg, url) {
  if(confirm(msg)) {
    document.location.href = url;
  }
}
