﻿function redirectExternal(urlAddress, cancelUrl) {
    ok = confirm("You are leaving Summit Baptist Church's website.\n\nThe site you are going to is independend from Summit. Please be advised that Summit disclaims an responsibility for actions or transactions on the site. Summit does not guarantee the accuracy, completeness, efficacy, or timeliness of the information contained therein.");
    if (ok) {
        window.location = urlAddress;
    }
    else
        window.location = cancelUrl;
}