function confirmLeaving() {
    return "You'll have to restart your purchase when you return.";
}

function addConfirmBeforeLeaving() {
    window.onbeforeunload = confirmLeaving;
}

function removeConfirmBeforeLeaving() {
    window.onbeforeunload = null;
}