
<!--
function ScanCookie(variable)
{
cook = document.cookie;
variable += "=";
place = cook.indexOf(variable,0);
if (place <= -1)
return("0" );
else
{
end = cook.indexOf(";",place)
if (end <= -1) return(unescape(cook.substring(place+variable.length,cook.length)));
else return(unescape(cook.substring(place+variable.length,end)));
}
}
function CreationCookie(nom,valeur,permanent)
{
if(permanent)
{
dateExp = new Date(2020,11,11);
dateExp = dateExp.toGMTString();
ifpermanent = '; expires=' + dateExp + ';';
}
else
ifpermanent = '';
document.cookie = nom + '=' + escape(valeur) + ifpermanent;
}
if(ScanCookie("dejapopup" )==0)
{

var msg=" ATTENTION : You may only enter this Website if you are 
18 years of age and over, or at least the age of maturity in your place of residence or where  you access this Website.  If you do not meet these requirements, then exit this Website.\n\nClick Enter to Continue, Leave to Exist..\n\n"
if(confirm(msg))
CreationCookie("dejapopup","oui",false)
else
window.location.replace('http://www.google.fr');
}
//-->
