function contact()
{
  var targetElement;
  targetElement = document.getElementById('contact');
  if(targetElement.style.display == "none")
  {
    targetElement.style.display = "";
  }
  else
  {
    targetElement.style.display = "none";
  }
}
function adultes()
{
  if(confirm('En cliquant sur OK, vous confirmez être majeur selon les lois de votre pays :'))
  {
    window.location.href = 'http://adultes.creation2sites.com/';
  }
}
