function annule()
{
  alert('Le développement de ce script a été interrompu, sa sortie est annulée.');
}
function contact()
{
  var targetElement;
  targetElement = document.getElementById('global');
  if(targetElement.style.display == "none")
  {
    targetElement.style.display = "";
    window.location.href = '#pop';
  }
  else
  {
    targetElement.style.display = "none";
  }
}
function wtop()
{
  var targetElement;
  targetElement = document.getElementById('global2');
  if(targetElement.style.display == "none")
  {
    targetElement.style.display = "";
    window.location.href = '#pop';
  }
  else
  {
    targetElement.style.display = "none";
  }
}
