

function confirmation(message, url) {
    var confirmed = confirm(message)
    if (confirmed){
        window.location = url;
    }
}

