function verify(message, location)
{
    var verified = confirm(message);
    if (verified == true) {
        window.location = location;
    }
}

