// Disclaimer DHTML
// Sous licence libre GNU GPL version 2

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 Entrer()
{
 document.cookie="disclaimerok=oui;path=/;";
 if(document.getElementById) document.getElementById("disclaimer").style.display='none'
 top.location.href=location.href;
}

if(ScanCookie("disclaimerok")==0)
{
 document.write("<div id=disclaimer><div id=disclaimer-fond></div><div id=disclaimer-conteneur>");
 document.write("<div id=disclaimer-cadre>");
 document.write("<b>D'après la loi Evin, ce site est exclusivement réservé aux personnes majeures.</b>");
 document.write("<br><br>SI VOUS ETES MAJEUR, pour accéder au site, cliquez sur Entrer");
 document.write("<br><br>SI VOUS ETES MINEUR (- 18 ans), cliquez sur Sortir pour quitter ce site.");
 document.write("<br><br>");
 document.write("<a href='#' onclick='Entrer(); return(false)'>Entrer</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href='http://www.google.com/'>Sortir</a>");
 document.write("</div>");
 document.write("</div></div>");
 document.write('<style>'+
'embed,object,select,iframe { display:none; visibility:hidden }'+
'div#disclaimer{ text-align:left; }'+
'div#disclaimer-fond{ position:fixed; z-index:10000000; display:block; width:100%; height:100%; top:0; left:0; background:#333333; filter:alpha(opacity=90); -moz-opacity:0.9; opacity: 0.9; text-align:center; line-height:normal; clear:both; }'+
'div#disclaimer-conteneur{ position:absolute; z-index:10000001; width:100%; text-align:center; clear:both; }'+
'div#disclaimer-cadre{ width:550px; margin-left:auto; margin-right:auto; text-align:center; margin-top:200px; padding:15px; font-size:12px; border:#ddd 1px solid; background:#f5f5f5; color:#555; -moz-border-radius:10px; }'+
'div#disclaimer-cadre b{ font-size:14px; color:black; }'+
'div#disclaimer-cadre a{ text-decoration:none; font-size:22px; font-weight:bold; color:#FAB106; }'+
'div#disclaimer-cadre a:hover{ color:#7E5A2D; }'+
'</style>');
}
