﻿// Jared's Journey specific functions

function doConfirm(page) {
    var response = confirm("You are now leaving the SUBWAY" + unescape("%AE") + " restaurants website(s)." + '\n\n' + "The policies, including the privacy policy, on the site(s) you are going to may vary from SUBWAY" + unescape("%AE") + " restaurants policies. SUBWAY" + unescape("%AE") + " restaurants is not responsible for the policies and practices of other companies.");
    if (response) {
        this.open(page, '_self');
    }
}

function toggleLegal() {
    l = document.getElementById('legal');
    t = document.getElementById('legaltext');
    if (l.style.display != "block") {
        l.style.display = "block";
        t.innerHTML = "Hide Legal";
    } else {
        l.style.display = "none";
        t.innerHTML = "View Legal";
    }
}