var cookie_agreement = "agreement";
var domain = document.domain.match(/[a-zA-Z0-9\-\_]+\.[a-zA-Z]{2,4}$/);
//var referrer = document.referrer.match(/free(foto|video|chat)\.cz/);

var disclaimer = "1.\tNasledujúca stránka obsahuje videá nevhodné maloletým navštevníkom. / Next page contains videos abuse minors visitors.\n\
2.\tPrehlasujem že môj vek je vyžší ako 18 rokov. / I declare that my age is more than 18 years.\n\
3. \tna nasledujúce stránky vstupujem dobrovoľne, sexuálne orientovaný materiál ma neuráža ani nepohoršuje a použijem ho výhradne pre osobnú potrebu / On following pages i go voluntarily sexual oriently materials and use it exclusively for personal use.\n\
4. \tneposkytnem ani akokoľvek inak neumožním prístup k nasledujúcim materiálom osobám, ktoré nespĺňajú ktorúkoľvek z predchádzajúcich podmienok / does not provide or otherwise allow any access to the following material to persons who do not meet any of the previous conditions.\n\n";


if(!domain) domain = document.domain;

/*if(referrer) {
    document.cookie = cookie_agreement+"=true;;path=/;domain=."+domain;
}*/

if(document.cookie.indexOf(cookie_agreement) == -1) {
    if(confirm(disclaimer)) document.cookie = cookie_agreement+"=true;;path=/;domain=."+domain;
    else document.location.href = "about:blank";
}
