function is18 () {
    if(getCookie('is18')!='true') {
	is18warning();
    }
}

function is18warning () {
    document.getElementById('strona').style.display = 'none';
    document.getElementById('aadduulltt').innerHTML = '<div id="is18warning"></div>';
    var d = document.getElementById('is18warning');
    d.innerHTML = '<div>Serwis zawiera treści o tematyce erotycznej przeznaczone wyłącznie dla osób dorosłych. Materiały publikowane na tej '
    + 'stronie są nieodpowiednie i zakazane dla osób poniżej 18 roku życia. Jeśli nie ukończyłeś 18 lat nie masz prawa wejść '
    + 'na stronę i nie możesz zapoznać się z treścią serwisu.<br><br> '
    + 'Kliknięcie przycisku WEJŚCIE oznacza, że akceptujesz zawartośc strony, tematykę oraz to, że masz ukończone 18 lat.<br>'
    + 'Jeśli nie masz ukonczonych 18 lat lub nie interesuje Cie tematyka erotyczna kliknij przycisk WYJŚCIE<br><br><br>'
    + '<center>Korzystanie z serwisu oznacza akceptację <b><a id="a_reg" href="http://www.sexoaza.pl/regulamin" target="_blank">regulaminu</a></b></center><br/>'
    + '<form name="akcept" action="" method="post">'
    + '<div id="tab_18">Oświadczam, że jestem pełnoletni (ukończyłem 18 lat) i akceptuję regulamin<br/><input type="checkbox" name="reg" value="" /><br/>'
    + '<div id="warn"><img name="arrow" src="http://pornowap.pl/obrazki/arrow.jpg" alt="Zaznacz kwadrat"/><br/>Zaakceptuj regulamin, aby przeglądać zawartość naszego serwisu.</div></div>'
    + '</form><br/><br/>'
    + '<center><a id="potw" href="javascript:void(0);" onclick="CheckReg();">WEJŚCIE</a>'
    + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'
    + '<a href="http://www.google.pl">WYJŚCIE</a></center></div>';
}

function CheckReg()
{
  if(document.forms.akcept.reg.checked != true)
  {
    	document.getElementById('warn').style.color = '#F00';
    	document.getElementById('warn').style.fontSize = '17px';
    	document.arrow.src = 'http://pornowap.pl/obrazki/arrow_2.gif';
  }
  else
  	is18prompt();
}

function CheckBox()
{
  if(document.forms.akcept.reg.checked != true)
  {
    document.getElementById('warn').style.color = '#F00';
    	document.getElementById('warn').style.fontSize = '17px';
    	document.arrow.src = 'http://pornowap.pl/obrazki/arrow_2.gif';
    return false;
  }
  else
  {
    setCookie('is18', 'true', 3600*24);
    return true;
  }
}

function is18prompt () {
    document.body.style.overflow = '';
    document.getElementById('strona').style.display = 'block';
    document.getElementById('aadduulltt').style.display='none';
    setCookie('is18', 'true', 3600*24);
}

// funkcje do obslugi cookie pobrane z w3c

function setCookie(c_name,value,expiredays) {
    var exdate = new Date();
    exdate.setDate(exdate.getDate() + expiredays);
    document.cookie=c_name + "=" +escape(value) + ((expiredays==null) ? "" : ";expires=" + exdate.toGMTString()+ ";path=/");
}

function getCookie(c_name) {
    if (document.cookie.length>0) {
        c_start=document.cookie.indexOf(c_name + "=");
        if (c_start!=-1) {
            c_start=c_start + c_name.length+1;
            c_end=document.cookie.indexOf(";",c_start);
            if (c_end==-1) c_end=document.cookie.length;
            return unescape(document.cookie.substring(c_start,c_end));
        }
    }
    return "";
}

