(function() {
const path = window.location.pathname.replace(/^\/|\/$/g, "");
const existingPages = [
"",
"opportunity",
"ebook",
"cardchallenge",
"tutorials",
"holidays",
"readysetsend",
"ready-set-send",
"enterprisepacks",
"actconsultant",
"courierblog",
"leadershipcoaching",
"addacts",
"incomemovement",
"old-home",
"old-home-2",
"go"
];
if (existingPages.includes(path)) return;
if (path && path.length > 0) {
window.location.replace(`/presentation?sponsor=${path}`);
}
})();