var listePlans = ['6141','0910','0930','1595','2800','3015','3210','3215','3305','3315','3320','3630','4220','4229','0200','6320','6360','6400','6410','6440','6500','6540','6610','6810','6910','6920','7115','7135','8600','0610','0800','0810','0890','0920','0950','1300','1570','2100','2200','3000','3310','3340','3400','3410','3480','3500','3600','3605','3610','3615','3700','3705','3710','3715','4400','4500','6110','6120','6220','6225','6235','6240','6250','6310','6330','6340','6370','6445','6450','6505','6510','6600','6620','6700','6900','6930','7400','6820'];

function getNumeroService()
{
  var url = document.location.href;
  var file = url.substring(url.lastIndexOf('/')+1);
  var service = file.substring(0, file.indexOf('.'))
  return service;
}

function hasPlan(service)
{
  var has = false;
  for(i=0;i<listePlans.length && !has;i++)
  {
    if(listePlans[i] == service)
      has = true;
  }

  return has;
}

function afficheLienPlan()
{
  var service = getNumeroService();
  if(hasPlan(service))
  {
    document.getElementById("lienPlan").style.display = "inline";
  }
}

function openPlan()
{
  var service = getNumeroService();
  window.open("plans/" + service + ".html", "", "width=600px,height=550px,dialogTop=10px,dialogLeft=10px,menubar=no,maximize=yes,minimize=yes,resizable=yes,scroll=yes,status=no");
}

