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("<style type=\"text/css\">div#disclaimer{ text-align:left; color: black;}div#disclaimer-fond{ margin: -8px;position:absolute; z-index:1000; width:100%; height:2650px; background-color: #000000; filter:alpha(opacity=80); -moz-opacity:0.80; opacity: 0.80; text-align:center; line-height:normal; clear:both; }div#disclaimer-conteneur{ position:absolute; z-index:1001; width:99.5%; text-align:center; clear:both; }div#disclaimer-cadre{margin-left:auto; margin-right:auto; text-align:center; margin-top:20px; padding:0px; }#cboxClose{cursor:pointer;}#cboxClose{background-attachment: scroll;background-clip: border-box;background-color: transparent; background-image: url(\"http://www.fanjeux.com/wp-content/themes/fanjeux.com/box/images/colorbox/close.png\"); background-origin: padding-box;    background-position: center top;  background-repeat: no-repeat;  background-size: auto auto;   height: 23px;   left: 239px;   margin-left: auto;   margin-right: auto;   position: relative;   text-indent: -9999px;   top: 66px;    width: 23px;}</style><div id=disclaimer>");
  document.write("<div id=disclaimer-fond></div>");
  document.write("<div id=disclaimer-conteneur>");
   document.write("<div id=disclaimer-cadre><a href='#' onclick='Entrer(); return(false)'><div id=\"cboxClose\">close</div></a>");
 document.write("<iframe src='http://www.fanjeux.com/wp-content/themes/fanjeux.com/box/index.html' frameborder='no' marginheight='0' marginwidth='0' scrolling='no' height='500' width='550' allowtransparency='true'></iframe>");
   document.write("</div>");
  document.write("</div>");
 document.write("</div>");
}
