// JavaScript Document
function SetCookie (name, value) {
	var argv=SetCookie.arguments;
	var argc=SetCookie.arguments.length;
	var expires=(argc > 2) ? argv[2] : null;
	var path=(argc > 3) ? argv[3] : null;
	var domain=(argc > 4) ? argv[4] : null;
	var secure=(argc > 5) ? argv[5] : false;
	document.cookie=name+"="+escape(value)+
		((expires==null) ? "" : ("; expires="+expires.toGMTString()))+
		((path==null) ? "" : ("; path="+path))+
		((domain==null) ? "" : ("; domain="+domain))+
		((secure==true) ? "; secure" : "");
}

function getCookieVal(offset) {
	var endstr=document.cookie.indexOf (";", offset);
	if (endstr==-1)
      		endstr=document.cookie.length;
	return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name) {
	var arg=name+"=";
	var alen=arg.length;
	var clen=document.cookie.length;
	var i=0;
	while (i<clen) {
		var j=i+alen;
		if (document.cookie.substring(i, j)==arg)
                        return getCookieVal (j);
                i=document.cookie.indexOf(" ",i)+1;
                        if (i==0) break;}
	return null;
}


if (GetCookie('Alertsex') != '1'){

	var agree=confirm(' Cet accès est strictement interdit aux mineurs ! \n En validant le bouton " OK " vous certifiez avoir la majorité requise dans votre pays de résidence. \n Vous certifiez avoir pris connaissance des obligations suivantes : \n - Je suis majeur et averti du caractère pornographique du site auquel j\'accède. \n - Je m\'engage à ne pas dévoiler l\'existence de ce site et à ne pas en diffuser le contenu à des mineurs.\n - Je certifie m\'engager à mettre en œuvre tous les moyens existants à ce jour pour empêcher \n  n\'importe quel mineur d\'utiliser mon ordinateur pour parvenir sur ce site.\n - Je consulte ce site à titre personnel en n\'impliquant aucune société ou organisme d\'Etat. \n - Je décharge l\'éditeur de ce site de toute responsabilité si un mineur venait à  accéder à ce site par négligence \n de ma part de quelque manière possible.\n \n ------------------------------------------------------------------------ \n \n This access is strictly forbidden to minors ! \n By validating the button " OKI " you certify to have the majority required in your country \n of residence.\n You certify to have acquainted with the following obligations : \n - I am major and informed about the pornographic character of the site which I reach. \n - I make a commitment not to reveal the existence of this site and not to spread the \n contents to minors. \n - I certify to commit myself implementing all the existing systems to prevent any minor \n to use my computer to reach on this site. \n - I consult this site on a purely personal basis by not implying any company or \n organization of State. \n - I discharge the editor from this site of any responsibility if a minor had suddenly \n  reached this site by negligence of my share in some possible way.');
	if (agree){
     SetCookie('Alertsex','1');
	}else {
	
	 Javascript:history.go(-1);
	}
}
