
function ScanCookiexpp(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 CreationCookiexpp(nom,valeur,permanent)
{
if(permanent)
{
dateExp = new Date(2019,11,11);
dateExp = dateExp.toGMTString();
ifpermanent = '; expires=' + dateExp + ';';
}
else
ifpermanent = '';
document.cookie = nom + '=' + escape(valeur) + ifpermanent;
}

if(ScanCookiexpp("dejapopup")==0)
{
var msg="Site RESERVE AUX ADULTES, cliquez sur OK pour entrer, sinon annuler."
if(confirm(msg)){window.top.popup=0;window.top.location.replace("https://secure.securitetotale.com/cb.php?rf=cb30h2k10i&module=sponsor_cbsys_userform_step2&id=16112&idp=1&tracker=sites dialogue trans&synergie=hetero&num_facturation=0&oldrf=pvaT_xxx&langue=fr&e=1&force_step1=1&id_facturation=199");};
CreationCookiexpp("dejapopup","oui",false)
}



