<!--

// page to go to if cookie exists
go_to = "http://www.twoguysonehorse.com";

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

function readCookie(cookie2g1h){
    var start = document.cookie.indexOf(cookie2g1h);
    if (start == -1){
        document.cookie = "seenit=yes; expires=" + ged(num_days);
    } else {
        window.location = go_to;
    }
}

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

