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


