function ReadCookie(cookieName) {
	var theCookie=""+document.cookie;
	var ind=theCookie.indexOf(cookieName);
	if (ind==-1 || cookieName=="") return "";
	var ind1=theCookie.indexOf(';',ind);
	if (ind1==-1) ind1=theCookie.length;
	return unescape(theCookie.substring(ind+cookieName.length+1,ind1));
}

function SetCookie(cookieName,cookieValue,nHours) {
	var today = new Date();
	var expire = new Date();
	if (nHours==null || nHours==0) nHours=2;
	expire.setTime(today.getTime() + 3600000*nHours);
	document.cookie = cookieName+"="+escape(cookieValue)+ ";expires="+expire.toGMTString()+";path=/";
}

if(ReadCookie('70m1k')=='')
{
     var disclaimer = "Serwis przeznaczony jest tylko dla osób dorosłych ze względu na swój erotyczny charakter. Jeśli nie masz 18 lat lub nie chcesz oglądać śmiałej erotyki - opuść tę stronę.";
    if (!confirm(disclaimer))
	   location.href = "http://www.pajacyk.pl"
    else
        {
        SetCookie('70m1k','70m1k',2);
	    document.getElementById('70m1k').style.display = 'none';
        }
}

