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>BIENVENUE AUX 2 OLIVIERS</b>");
 document.write("<br><br>Ouvert 7 jours sur 7 midi et soir");
 //document.write("<br><br>Restaurant ouvert <br>le dimanche soir <br>");
 //document.write("<br><br>Restaurant ouvert le dimanche <br>de 12h &agrave; 15h30<br>");
 //document.write("<br><br>-20 % sur les formules de la carte<br>de 19h &agrave; 20h sauf le WE");
 //document.write("<br><br>Pour entrer CLIQUEZ SUR ENTRER");
 //document.write("<br><br>Pour quitter CLIQUEZ SUR SORTIR");
 document.write("<br>");
 document.write("<a href='#' onclick='Entrer(); return(false)'>poursuivre votre visite</a>");
 document.write("</div>");
 document.write("</div></div>");
 document.write('<style>embed,object,select,iframe { display:none; visibility:hidden }</style>');
}

