var text = "Klikajać TAK oświadczam, że:<br /><br />";
text += "Mam co najmniej 18 lat lub więcej, jeśli wymaga to prawo mojego państwa.<br />";
text += "Pragnę oglądać materiały erotyczne przedstawione na tej stronie<br />";

var yes = "TAK, akceptuję wszystkie postanowienia";
var no = "NIE, wychodzę";
function setAccess(){
    document.cookie = "adultConfimed=true";
}

function getAccess(){
    if (document.cookie.length > 0) {
        pos = document.cookie.indexOf("adultConfimed=true");
        if (pos != -1) {
			return true;
        }
    }
    return false;
}

function adultConfirmed(){
    setAccess();
    document.location.reload();
}

function notAdult(){
    window.location.href = "http://nightweb.pl/";
}

$(document).ready(function(){
    if (!getAccess()) {
        var ageAlert = '<br /><br /><div><br /><br /><center><h3>' + text + '</h3><br /><br /><input type="button" value="' + yes + '" onClick="adultConfirmed()" /> &nbsp; <input type="button" value="' + no + '" onClick="notAdult()" /></center><br /><br /></div><br />';
        $('body').html(ageAlert);
    }
});

