<!--

go_to = "culturalChangeCmplt.html";

// number of days cookie lives for
num_days = 60;
function ged(noDays){
    var today = new Date();
    var expr = new Date(today.getTime() + noDays*24*60*60*1000);
    return  expr.toGMTString();
}

function readCookie(cookieName){
    var start = document.cookie.indexOf(cookieName);
    if (start == -1){ 
       
    } else {
        window.location = go_to;
    }
}

readCookie("seenit");
// -->
