// Confirmation dialog
function confirmation(url, message)
{
    if (window.confirm(message)) {
        document.location = url;
    }
}
