var cookieinfo
function CookieExist(CookieName) {
	cookieinfo = document.cookie;
	if (cookieinfo.indexOf(CookieName) == -1) {
		return false;
	}
	else {
		return true;
	}
}

	function SetCookie(CookieName,CookieArgs,CookieExpire) {
	document.cookie = CookieName + "=" + CookieArgs + ";" + "expires=" + CookieExpire;
		}
function GetCookie(CookieName) {
	if ( CookieExist(CookieName) ){
		d = cookieinfo.indexOf(CookieName) + CookieName.length + 1;
		f = cookieinfo.indexOf(";",d);
		if ( f == -1) {
			f = cookieinfo.length;
		}
		return (cookieinfo.substring(d,f));
	}
	else {
		return ("0");
}
}

if (GetCookie("OKadulte1")!=1) 
{
okoupas=confirm("*********** ATTENTION AVERTISSEMENT ! ***********\n I took note of the following obligations: - To have the age of legal majority such as defined in my country. - I am informed character libertine and erotic contents on this service. - I certify not to make known it with minors. - I certify to commit myself implementing all the existing means to date to prevent a minor from using my computer to arrive on this service. - I consult this site on a purely personal basis by not implying any organization of State. - I discharge the editor from this service of any responsibility if a minor had suddenly reached on this site by negligence of my share in some manner that it is. - I commit myself not diffusing the images and the texts of this service. - I prohibit myself as of now continuing the editor of this service on any judicial action. ");
if (okoupas==false){
document.location="http://www.mdpublicite.com";
}
else {
SetCookie("OKadulte1",1,"");
}
}


