function getCookie(c_name) {
    var i, x, y, ARRcookies = document.cookie.split(";");
    for (i = 0; i < ARRcookies.length; i++) {
        x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
        y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
        x = x.replace(/^\s+|\s+$/g, "");
        if (x == c_name) {
            return unescape(y);
        }
    }
}

function setCookie(c_name, value, exdays) {
    var exdate = new Date();
    exdate.setDate(exdate.getDate() + exdays);
    var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
    document.cookie = c_name + "=" + c_value;
}

function checkCookie() {
    /*
    var check = getCookie("displayPopup20111007");
    if (check == null || check == "") {
    $.colorbox({ html: "<a href='/roda-jc/kaartverkoop/ajax-passe-partout '><img src='http://www.rodajc.nl/upload/images/roda-ad.jpg' title='Roda' style='border:0px;'/></a>" });
    setCookie("displayPopup20111007", "done", 365);
    }
    */

    /*
    if (document.location.href == "http://www.rodajc.nl/") {
        $.colorbox({ html: "<a href='http://www.simpel.nl/rodajc' target='_blank'><img src='http://www.rodajc.nl/upload/images/splash1c.jpg' title='Roda' style='border:0px;width:307px;height:499px;'/></a>" });
    }
    */

}

$(document).ready(function () { checkCookie() });
