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()
{
 var aujourdhui=new Date();
 var expdate=new Date();
 expdate.setTime(aujourdhui.getTime()+(7*24*60*60*1000));
 document.cookie="disclaimerok=oui;path=/;expires="+expdate.toGMTString();
 if(document.getElementById) document.getElementById("disclaimer").style.display='none'
 top.location.href=location.href;
}

if(ScanCookie("disclaimerok")==0){
document.write("<div id=fulldisclamer><div id=disclaimer-fond></div><div id=disclaimer-conteneur><div id=disclaimer>");
document.write("<div id=entrer>");
document.write("<div class=in><a href='#' onclick='Entrer(); return(false)'>ENTRER</a></div>");
document.write("<div class=out><a href=http://www.google.com>SORTIR</a></div>");
document.write("</div></div>");
document.write("</div>");
document.write('<style>embed,object,select,iframe { display:none; visibility:hidden }</style>');}