﻿
/* displays a confirmation box before navigating to the URI */
function confirmation ( message, redirectURI )
{
    var confirmed = confirm( message );
    if (confirmed)
    {
        window.location = redirectURI;
    }
}
