src/Controller/AutresPagesController.php line 128

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\Controller;//A voir
  4. use App\Entity\Information;
  5. use App\Entity\InformationHopital;
  6. use App\Entity\Personnalisation;
  7. use App\Entity\Utilisateur;
  8. use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;//A voir
  9. use Symfony\Component\HttpFoundation\JsonResponse;//A voir
  10. use App\Repository\ATBGRepository;
  11. use App\Repository\AbbreviationLangueRepository;
  12. use App\Repository\AbbreviationRepository;
  13. use App\Repository\ActualiteRepository;
  14. use App\Repository\AntibiotiqueRepository;
  15. use App\Repository\CasCliniquesCategorieRepository;
  16. use App\Repository\CasCliniquesQuestionRepository;
  17. use App\Repository\CasCliniquesReponseRepository;
  18. use App\Repository\CasCliniquesReponseUtilisateurRepository;
  19. use App\Repository\CelluleRepository;
  20. use App\Repository\CelluleTitreCompletRepository;
  21. use App\Repository\CoAntibiotiqueCalculRepository;
  22. use App\Repository\ContenuRepository;
  23. use App\Repository\EtablissementRepository;
  24. use App\Repository\FamilleAntibiotiqueRepository;
  25. use App\Repository\FavorisRepository;
  26. use App\Repository\InformationHopitalRepository;
  27. use App\Repository\InformationReferenceRepository;
  28. use App\Repository\InformationRepository;
  29. use App\Repository\IntervenantSessioneppRepository;
  30. use App\Repository\LangueRepository;
  31. use App\Repository\MicroorganismeRepository;
  32. use App\Repository\NoteRepository;
  33. use App\Repository\ParametreRepository;
  34. use App\Repository\PaysRepository;
  35. use App\Repository\PersonnalisationRepository;
  36. use App\Repository\PersonnalisationSpectreRepository;
  37. use App\Repository\QualiteRepository;
  38. use App\Repository\ReferenceHopitalRepository;
  39. use App\Repository\ReferenceRepository;
  40. use App\Repository\SessioneppRepository;
  41. use App\Repository\SessioneppUrlRepository;
  42. use App\Repository\SpecialiteRepository;
  43. use App\Repository\SpectreRepository;
  44. use App\Repository\TicketPatientRepository;
  45. use App\Repository\TypeInformationRepository;
  46. use App\Repository\UtilisateurRepository;
  47. use App\Repository\VersionRepository;
  48. use Symfony\Component\HttpFoundation\Request;
  49. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController//Test
  50. use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
  51. class AutresPagesController extends AbstractController//Controller
  52. {
  53.     public function __construct(
  54.         private AbbreviationLangueRepository $abbreviationLangueRepo,
  55.         private AbbreviationRepository $abbreviationRepo,
  56.         private ActualiteRepository $actualiteRepo,
  57.         private AntibiotiqueRepository $antibiotiqueRepo,
  58.         private CasCliniquesCategorieRepository $casCliniquesCategorieRepo,
  59.         private CasCliniquesQuestionRepository $casCliniquesQuestionRepo,
  60.         private CasCliniquesReponseRepository $casCliniquesReponseRepo,
  61.         private CasCliniquesReponseUtilisateurRepository $casCliniquesReponseUtilisateurRepo,
  62.         private CelluleRepository $celluleRepo,
  63.         private CelluleTitreCompletRepository $celluleTitreCompletRepo,
  64.         private CoAntibiotiqueCalculRepository $coAntibiotiqueCalculRepo,
  65.         private ContenuRepository $contenuRepo,
  66.         private EtablissementRepository $etablissementRepo,
  67.         private FamilleAntibiotiqueRepository $familleAntibiotiqueRepository,
  68.         private FavorisRepository $favorisRepo,
  69.         private InformationHopitalRepository $informationHopitalRepo,
  70.         private InformationReferenceRepository $informationReferenceRepo,
  71.         private InformationRepository $informationRepo,
  72.         private IntervenantSessioneppRepository $intervenantSessioneppRepo,
  73.         private LangueRepository $langueRepo,
  74.         private MicroorganismeRepository $microorganismeRepo,
  75.         private NoteRepository $noteRepo,
  76.         private ParametreRepository $parametreRepo,
  77.         private PaysRepository $paysRepo,
  78.         private PersonnalisationRepository $personnalisationRepo,
  79.         private PersonnalisationSpectreRepository $personnalisationSpectreRepo,
  80.         private QualiteRepository $qualiteRepo,
  81.         private ReferenceHopitalRepository $referenceHopitalRepo,
  82.         private ReferenceRepository $referenceRepo,
  83.         private SessioneppRepository $sessioneppRepo,
  84.         private SessioneppUrlRepository $sessioneppUrlRepo,
  85.         private SpecialiteRepository $specialiteRepo,
  86.         private SpectreRepository $spectreRepo,
  87.         private TicketPatientRepository $ticketPatientRepo,
  88.         private TypeInformationRepository $typeInformationRepo,
  89.         private UtilisateurRepository $utilisateurRepo,
  90.         private VersionRepository $versionRepo
  91.     ){}
  92.     public function mises_a_jours(Request $request)
  93.     {
  94.         $session $request->getSession();
  95.         $em $this->getDoctrine()->getManager();
  96.         $versions $this->versionRepo->findVersionWithVersionAntibiogarde($this->getParameter('version_antibiogarde'), $session->get('_locale'));
  97.         return $this->render('AutresPages/mises-a-jours.html.twig', array('versions' => $versions));
  98.     }
  99.     public function mises_a_jours_popup(Request $request){
  100.         $em $this->getDoctrine()->getManager();
  101.         $session $request->getSession();
  102.         $date = new \DateTime('NOW');
  103.         $visualiser false;
  104.         $versions $this->versionRepo->findVersionWithVersionAntibiogardeLastMonth($this->getParameter('version_antibiogarde'), $this->getParameter('nouveautes_affichage_moins_de_x_periode'), $session->get('_locale'));
  105.         if(($session->get('maj_popup') == null || $session->get('maj_popup') != $date->format('Ymd')) && count($versions) > 0) {
  106.             $session->set('maj_popup'$date->format('Ymd'));
  107.             $visualiser true;
  108.         }
  109.         if($request->query->get('nb') == true) {
  110.             return new JsonResponse(
  111.                 array('nb' => count($versions), 'visualiser' => $visualiser)
  112.             );
  113.         }
  114.         return $this->render('AutresPages/mises-a-jours-popup.html.twig', array('versions' => $versions));
  115.     }
  116.     public function contacts(Request $request)
  117.     {
  118.         $em $this->getDoctrine()->getManager();
  119.         $session $request->getSession();
  120.         $version_antibiogarde $this->getParameter('version_antibiogarde');
  121.         $administrateurs null;
  122.         if ($version_antibiogarde != 'web_edition'
  123.         {
  124.             $idEtablissement $session->get('id_etablissement');
  125.             $client_id_adada $session->get('client_id_adada');
  126.             $administrateurs $this->utilisateurRepo->findAdministrateurForIdAdada($client_id_adada,$idEtablissement);
  127.         }
  128.         return $this->render('AutresPages/contacts.html.twig',array('administrateurs' => $administrateurs));
  129.     }
  130.     public function mentions_legales()
  131.     {
  132.         $version_antibiogarde $this->getParameter('version_antibiogarde');
  133.         if ($version_antibiogarde == 'web_edition'
  134.         {
  135.             return $this->render('AutresPages/mentions-legales-5s.html.twig');
  136.         }
  137.         else
  138.         {
  139.             return $this->render('AutresPages/mentions-legales-5h.html.twig');
  140.         }        
  141.     }
  142.     public function donnees_personnelles()
  143.     {
  144.         $version_antibiogarde $this->getParameter('version_antibiogarde');
  145.         if ($version_antibiogarde == 'web_edition'
  146.         {
  147.             return $this->render('AutresPages/donnees-personnelles-5s.html.twig');
  148.         }
  149.         else
  150.         {
  151.             return $this->render('AutresPages/donnees-personnelles-5h.html.twig');
  152.         }        
  153.     }
  154.     public function abreviations(Request $request)
  155.     {
  156.         $session $request->getSession();
  157.         $abreviations $this->abbreviationRepo->findAbbreviationsWithLangue($session->get("_locale"));
  158.         return $this->render('AutresPages/abreviations.html.twig',array('abreviations' => $abreviations));
  159.     }
  160.     public function all_pages(Request $request)
  161.     {
  162.         $em $this->getDoctrine()->getManager();
  163.         $session $request->getSession();
  164.         $cellules $this->celluleRepo->getAllFinalPages();
  165.         $resultat = array();
  166.         $string "";
  167.         foreach ($cellules as $cellule
  168.         {
  169.             $string 'contenu/'.$cellule->getIdcellule();
  170.             foreach ($cellule->getCellulesPeres() as $pere
  171.             {
  172.                 $this->linkPage($string,$pere);
  173.                 if (count($cellule->getCellulesFils()) == 0
  174.                 {
  175.                     $resultat[$string] = $cellule->getTitreCourt($session->get("_locale"));
  176.                 }
  177.                 $string "";
  178.             }
  179.         }
  180.         return $this->render('AutresPages/all-pages.html.twig',array('cellules' => $resultat));
  181.     }
  182.     private function linkPage(&$string,$cellule,Request $request)
  183.     {
  184.         $session $request->getSession();
  185.         if ($cellule->getAfficherFils() == 0
  186.         {
  187.             $string $cellule->getIdcellule()."/".$string;
  188.         }
  189.         foreach ($cellule->getCellulesPeres() as $pere
  190.         {
  191.             $this->linkPage($string,$pere);
  192.             if (count($cellule->getCellulesFils()) == 0
  193.             {
  194.                  $resultat[$string] = $cellule->getTitreCourt($session->get("_locale"));
  195.             }
  196.         }
  197.     }
  198.     /**
  199.      * Require ROLE_REFERENT only for this action
  200.      * 
  201.      * @IsGranted("ROLE_REFERENT")
  202.      */
  203.     public function delete_old_balise_info(Request $request)
  204.     {
  205.         $em $this->getDoctrine()->getManager();
  206.         $session $request->getSession();
  207.         $allContenus = array();
  208.         $countInformation 0;
  209.         /*****************************************************************************/
  210.         /********************************* TELEPHONE *********************************/
  211.         /*****************************************************************************/
  212.         $contenus $this->contenuRepo->findContenusWithBalise('<telephone/>');
  213.         $allContenus array_merge($allContenus,$contenus);
  214.         $matches null;
  215.         foreach ($contenus as $contenu
  216.         {
  217.             preg_match_all('<telephone/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  218.             foreach ($matches[0] as $matche
  219.             {
  220.                 //Insertion de la nouvelle information. 
  221.                 $information = new Information();
  222.                 $information->setDateInsertion(new \DateTime("NOW"));
  223.                 $information->setDateModification(new \DateTime("NOW"));
  224.                 $information->setDateValidation(new \DateTime("NOW"));
  225.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('telephone'));
  226.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  227.                 $em->persist($information);
  228.                 $em->flush();
  229.                 $countInformation $countInformation 1;
  230.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  231.                 $contenu->setContenuhtml(str_replace('<telephone/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  232.                 $em->persist($contenu);
  233.                 $em->flush();
  234.             }
  235.         }
  236.         /*****************************************************************************/
  237.         /********************************* ATTENTION *********************************/
  238.         /*****************************************************************************/
  239.         $contenus $this->contenuRepo->findContenusWithBalise('<attention/>');
  240.         $allContenus array_merge($allContenus,$contenus);
  241.         foreach ($contenus as $contenu
  242.         {
  243.             preg_match_all('<attention/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  244.             foreach ($matches[0] as $matche
  245.             {
  246.                 //Insertion de la nouvelle information. 
  247.                 $information = new Information();
  248.                 $information->setDateInsertion(new \DateTime("NOW"));
  249.                 $information->setDateModification(new \DateTime("NOW"));
  250.                 $information->setDateValidation(new \DateTime("NOW"));
  251.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('attention'));
  252.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  253.                 $em->persist($information);
  254.                 $em->flush();
  255.                 $countInformation $countInformation 1;
  256.                
  257.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  258.                 $contenu->setContenuhtml(str_replace('<attention/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  259.                 $em->persist($contenu);
  260.                 $em->flush();
  261.             }
  262.         }
  263.         /*****************************************************************************/
  264.         /*********************************    MAIN   *********************************/
  265.         /*****************************************************************************/
  266.         $contenus $this->contenuRepo->findContenusWithBalise('<main/>');
  267.         $allContenus array_merge($allContenus,$contenus);
  268.         foreach ($contenus as $contenu
  269.         {
  270.             preg_match_all('<main/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  271.             foreach ($matches[0] as $matche
  272.             {
  273.                 //Insertion de la nouvelle information. 
  274.                 $information = new Information();
  275.                 $information->setDateInsertion(new \DateTime("NOW"));
  276.                 $information->setDateModification(new \DateTime("NOW"));
  277.                 $information->setDateValidation(new \DateTime("NOW"));
  278.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('main'));
  279.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  280.                 $em->persist($information);
  281.                 $em->flush();
  282.                 $countInformation $countInformation 1;
  283.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  284.                 $contenu->setContenuhtml(str_replace('<main/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  285.                 $em->persist($contenu);
  286.                 $em->flush();
  287.             }
  288.         }
  289.         /*****************************************************************************/
  290.         /*********************************  CISEAUX  *********************************/
  291.         /*****************************************************************************/
  292.         $contenus $this->contenuRepo->findContenusWithBalise('<ciseaux/>');
  293.         $allContenus array_merge($allContenus,$contenus);
  294.         foreach ($contenus as $contenu
  295.         {
  296.             preg_match_all('<ciseaux/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  297.             foreach ($matches[0] as $matche
  298.             {
  299.                 //Insertion de la nouvelle information. 
  300.                 $information = new Information();
  301.                 $information->setDateInsertion(new \DateTime("NOW"));
  302.                 $information->setDateModification(new \DateTime("NOW"));
  303.                 $information->setDateValidation(new \DateTime("NOW"));
  304.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('ciseaux'));
  305.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  306.                 $em->persist($information);
  307.                 $em->flush();
  308.                 $countInformation $countInformation 1;
  309.                 
  310.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  311.                 $contenu->setContenuhtml(str_replace('<ciseaux/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  312.                 $em->persist($contenu);
  313.                 $em->flush();
  314.             }
  315.         }
  316.         /*****************************************************************************/
  317.         /*********************************   BOMBE   *********************************/
  318.         /*****************************************************************************/
  319.         $contenus $this->contenuRepo->findContenusWithBalise('<bombe/>');
  320.         $allContenus array_merge($allContenus,$contenus);
  321.         foreach ($contenus as $contenu
  322.         {
  323.             preg_match_all('<bombe/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  324.             foreach ($matches[0] as $matche
  325.             {
  326.                 //Insertion de la nouvelle information. 
  327.                 $information = new Information();
  328.                 $information->setDateInsertion(new \DateTime("NOW"));
  329.                 $information->setDateModification(new \DateTime("NOW"));
  330.                 $information->setDateValidation(new \DateTime("NOW"));
  331.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('bombe'));
  332.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  333.                 $em->persist($information);
  334.                 $em->flush();
  335.                 $countInformation $countInformation 1;
  336.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  337.                 $contenu->setContenuhtml(str_replace('<bombe/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  338.                 $em->persist($contenu);
  339.                 $em->flush();
  340.             }
  341.         }
  342.         /*****************************************************************************/
  343.         /*********************************   MAISON  *********************************/
  344.         /*****************************************************************************/
  345.         $contenus $this->contenuRepo->findContenusWithBalise('<maison/>');
  346.         $allContenus array_merge($allContenus,$contenus);
  347.         foreach ($contenus as $contenu
  348.         {
  349.             preg_match_all('<maison/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  350.             foreach ($matches[0] as $matche
  351.             {
  352.                 //Insertion de la nouvelle information. 
  353.                 $information = new Information();
  354.                 $information->setDateInsertion(new \DateTime("NOW"));
  355.                 $information->setDateModification(new \DateTime("NOW"));
  356.                 $information->setDateValidation(new \DateTime("NOW"));
  357.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('maison'));
  358.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  359.                 $em->persist($information);
  360.                 $em->flush();
  361.                 $countInformation $countInformation 1;
  362.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  363.                 $contenu->setContenuhtml(str_replace('<maison/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  364.                 $em->persist($contenu);
  365.                 $em->flush();
  366.             }
  367.         }
  368.         /*****************************************************************************/
  369.         /*********************************    TUBE   *********************************/
  370.         /*****************************************************************************/
  371.         $contenus $this->contenuRepo->findContenusWithBalise('<tube/>');
  372.         $allContenus array_merge($allContenus,$contenus);
  373.         foreach ($contenus as $contenu
  374.         {
  375.             preg_match_all('<tube/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  376.             foreach ($matches[0] as $matche
  377.             {
  378.                 //Insertion de la nouvelle information. 
  379.                 $information = new Information();
  380.                 $information->setDateInsertion(new \DateTime("NOW"));
  381.                 $information->setDateModification(new \DateTime("NOW"));
  382.                 $information->setDateValidation(new \DateTime("NOW"));
  383.                 $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('tube'));
  384.                 $information->addPays($this->paysRepo->findPaysWithCodePays('FRA'));
  385.                 $em->persist($information);
  386.                 $em->flush();
  387.                 $countInformation $countInformation 1;
  388.                 //remplacement de la balise par la nouvelle avec insertion en BDD
  389.                 $contenu->setContenuhtml(str_replace('<tube/>''<info'.$information->getIdInformation().'/>'$contenu->getContenuhtml($session->get('_locale'))));
  390.                 $em->persist($contenu);
  391.                 $em->flush();
  392.             }
  393.         }
  394.         return $this->render('AutresPages/delete-balise.html.twig',array('countInformation' => $countInformation,'contenus' => $allContenus));
  395.     }
  396.     /**
  397.      * Require ROLE_REFERENT only for this action
  398.      * 
  399.      * @IsGranted("ROLE_REFERENT")
  400.      */
  401.     public function personnalisation_dci_ajout_info($idDCIRequest $request)
  402.     {
  403.         $em $this->getDoctrine()->getManager();
  404.         $session $request->getSession();
  405.         $client_id_adada $session->get('client_id_adada');
  406.         $contenus $this->contenuRepo->findContenusWithBalise('<dci'.$idDCI.'/>');
  407.         foreach ($contenus as $contenu
  408.         {
  409.             preg_match_all('<dci'.$idDCI.'/>'$contenu->getContenuhtml($session->get('_locale')), $matches);
  410.             //Insertion de la nouvelle information. 
  411.             $information = new InformationHopital();
  412.             $information->setClientIdAdada($client_id_adada);
  413.             $information->setContenuhtml('Dispensation contrôlée');
  414.             $information->setDateInsertion(new \DateTime("NOW"));
  415.             $information->setDateModification(new \DateTime("NOW"));
  416.             $information->setTypeInformation($this->informationRepo->findTypeInformationWithSlug('attention'));
  417.             $em->persist($information);
  418.             $em->flush();
  419.             //remplacement de la balise par la nouvelle avec insertion en BDD
  420.             $personnalisation_contenu $this->personnalisationRepo->findPersonnalisationWithIdContenu($contenu->getIdContenu(),$client_id_adada);
  421.             if ($personnalisation_contenu == null
  422.             {
  423.                 $personnalisation_contenu = new Personnalisation();
  424.                 $personnalisation_contenu->setClientIdAdada($client_id_adada);
  425.                 $personnalisation_contenu->setContenuhtml(str_replace('<dci'.$idDCI.'/>''<infoHopital'.$information->getIdInformation().'/><dci'.$idDCI.'/>'$contenu->getContenuhtml($session->get('_locale'))));
  426.                 $personnalisation_contenu->setcontenu($contenu);
  427.             }
  428.             else
  429.             {
  430.                 $personnalisation_contenu->setContenuhtml(str_replace('<dci'.$idDCI.'/>''<infoHopital'.$information->getIdInformation().'/><dci'.$idDCI.'/>'$personnalisation_contenu->getContenuhtml($session->get('_locale'))));
  431.             }
  432.             $em->persist($personnalisation_contenu);
  433.             $em->flush();
  434.         }
  435.     }
  436.     /**
  437.      * Require ROLE_REFERENT only for this action
  438.      * 
  439.      * @IsGranted("ROLE_REFERENT")
  440.      */
  441.     public function allContenus($page)
  442.     {
  443.         $res = array();
  444.         $term "";
  445.         if ($page == 1
  446.         {
  447.             $term "Pages 1";
  448.             $res = array
  449.             (
  450.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '21','libelle' => '''description' => ''],
  451.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '22','libelle' => '''description' => ''],
  452.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '23','libelle' => '''description' => ''],
  453.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '24','libelle' => '''description' => ''],
  454.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '26','libelle' => '''description' => ''],
  455.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '27','libelle' => '''description' => ''],
  456.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '29','libelle' => '''description' => ''],
  457.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '30','libelle' => '''description' => ''],
  458.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '31','libelle' => '''description' => ''],
  459.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '33','libelle' => '''description' => ''],
  460.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '34','libelle' => '''description' => ''],
  461.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '35','libelle' => '''description' => ''],
  462.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '36','libelle' => '''description' => ''],
  463.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '40','libelle' => '''description' => ''],
  464.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '42','libelle' => '''description' => ''],
  465.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '44','libelle' => '''description' => ''],
  466.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '45','libelle' => '''description' => ''],
  467.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '47','libelle' => '''description' => ''],
  468.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '52','libelle' => '''description' => ''],
  469.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '53','libelle' => '''description' => ''],
  470.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '56','libelle' => '''description' => ''],
  471.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '57','libelle' => '''description' => ''],
  472.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '58','libelle' => '''description' => ''],
  473.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '60','libelle' => '''description' => ''],
  474.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '61','libelle' => '''description' => ''],
  475.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '62','libelle' => '''description' => ''],
  476.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '63','libelle' => '''description' => ''],
  477.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '66','libelle' => '''description' => ''],
  478.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '68','libelle' => '''description' => ''],
  479.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '69','libelle' => '''description' => ''],
  480.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '70','libelle' => '''description' => ''],
  481.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '71','libelle' => '''description' => ''],
  482.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '72','libelle' => '''description' => ''],
  483.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '73','libelle' => '''description' => ''],
  484.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '77','libelle' => '''description' => ''],
  485.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '79','libelle' => '''description' => ''],
  486.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '81','libelle' => '''description' => ''],
  487.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '82','libelle' => '''description' => ''],
  488.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '83','libelle' => '''description' => ''],
  489.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '84','libelle' => '''description' => ''],
  490.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '85','libelle' => '''description' => ''],
  491.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '86','libelle' => '''description' => ''],
  492.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '87','libelle' => '''description' => ''],
  493.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '88','libelle' => '''description' => ''],
  494.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '89','libelle' => '''description' => ''],
  495.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '90','libelle' => '''description' => ''],
  496.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '91','libelle' => '''description' => ''],
  497.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '92','libelle' => '''description' => ''],
  498.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '93','libelle' => '''description' => ''],
  499.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '94','libelle' => '''description' => ''],
  500.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '95','libelle' => '''description' => ''],
  501.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '96','libelle' => '''description' => ''],
  502.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '97','libelle' => '''description' => ''],
  503.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '98','libelle' => '''description' => ''],
  504.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '99','libelle' => '''description' => ''],
  505.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '100','libelle' => '''description' => ''],
  506.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '101','libelle' => '''description' => ''],
  507.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '102','libelle' => '''description' => ''],
  508.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '103','libelle' => '''description' => ''],
  509.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '104','libelle' => '''description' => ''],
  510.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '105','libelle' => '''description' => ''],
  511.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '107','libelle' => '''description' => ''],
  512.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '108','libelle' => '''description' => ''],
  513.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '110','libelle' => '''description' => ''],
  514.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '111','libelle' => '''description' => ''],
  515.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '112','libelle' => '''description' => '']
  516.             );
  517.         }
  518.         if ($page == 2
  519.         {
  520.             $term "Pages 2";
  521.             $res = array
  522.             (
  523.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '113','libelle' => '''description' => ''],
  524.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '114','libelle' => '''description' => ''],
  525.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '115','libelle' => '''description' => ''],
  526.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '116','libelle' => '''description' => ''],
  527.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '117','libelle' => '''description' => ''],
  528.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '118','libelle' => '''description' => ''],
  529.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '119','libelle' => '''description' => ''],
  530.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '120','libelle' => '''description' => ''],
  531.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '121','libelle' => '''description' => ''],
  532.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '122','libelle' => '''description' => ''],
  533.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '123','libelle' => '''description' => ''],
  534.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '124','libelle' => '''description' => ''],
  535.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '125','libelle' => '''description' => ''],
  536.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '126','libelle' => '''description' => ''],
  537.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '127','libelle' => '''description' => ''],
  538.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '128','libelle' => '''description' => ''],
  539.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '129','libelle' => '''description' => ''],
  540.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '130','libelle' => '''description' => ''],
  541.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '131','libelle' => '''description' => ''],
  542.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '133','libelle' => '''description' => ''],
  543.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '136','libelle' => '''description' => ''],
  544.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '143','libelle' => '''description' => ''],
  545.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '144','libelle' => '''description' => ''],
  546.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '145','libelle' => '''description' => ''],
  547.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '149','libelle' => '''description' => ''],
  548.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '150','libelle' => '''description' => ''],
  549.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '151','libelle' => '''description' => ''],
  550.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '156','libelle' => '''description' => ''],
  551.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '157','libelle' => '''description' => ''],
  552.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '158','libelle' => '''description' => ''],
  553.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '159','libelle' => '''description' => ''],
  554.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '160','libelle' => '''description' => ''],
  555.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '161','libelle' => '''description' => ''],
  556.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '164','libelle' => '''description' => ''],
  557.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '165','libelle' => '''description' => ''],
  558.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '168','libelle' => '''description' => ''],
  559.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '169','libelle' => '''description' => ''],
  560.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '170','libelle' => '''description' => ''],
  561.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '171','libelle' => '''description' => ''],
  562.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '172','libelle' => '''description' => ''],
  563.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '173','libelle' => '''description' => ''],
  564.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '174','libelle' => '''description' => ''],
  565.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '175','libelle' => '''description' => ''],
  566.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '176','libelle' => '''description' => ''],
  567.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '177','libelle' => '''description' => ''],
  568.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '178','libelle' => '''description' => ''],
  569.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '179','libelle' => '''description' => ''],
  570.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '180','libelle' => '''description' => ''],
  571.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '181','libelle' => '''description' => ''],
  572.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '182','libelle' => '''description' => ''],
  573.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '183','libelle' => '''description' => ''],
  574.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '184','libelle' => '''description' => ''],
  575.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '185','libelle' => '''description' => ''],
  576.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '186','libelle' => '''description' => ''],
  577.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '187','libelle' => '''description' => ''],
  578.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '188','libelle' => '''description' => ''],
  579.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '189','libelle' => '''description' => ''],
  580.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '190','libelle' => '''description' => ''],
  581.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '191','libelle' => '''description' => ''],
  582.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '193','libelle' => '''description' => ''],
  583.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '202','libelle' => '''description' => ''],
  584.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '209','libelle' => '''description' => ''],
  585.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '213','libelle' => '''description' => ''],
  586.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '214','libelle' => '''description' => ''],
  587.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '216','libelle' => '''description' => ''],
  588.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '217','libelle' => '''description' => '']
  589.                         );
  590.         }
  591.         if ($page == 3
  592.         {
  593.             $term "Pages 3";
  594.             $res = array
  595.             (
  596.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '219','libelle' => '''description' => ''],
  597.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '223','libelle' => '''description' => ''],
  598.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '224','libelle' => '''description' => ''],
  599.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '227','libelle' => '''description' => ''],
  600.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '228','libelle' => '''description' => ''],
  601.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '229','libelle' => '''description' => ''],
  602.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '230','libelle' => '''description' => ''],
  603.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '238','libelle' => '''description' => ''],
  604.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '244','libelle' => '''description' => ''],
  605.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '247','libelle' => '''description' => ''],
  606.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '250','libelle' => '''description' => ''],
  607.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '256','libelle' => '''description' => ''],
  608.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '261','libelle' => '''description' => ''],
  609.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '262','libelle' => '''description' => ''],
  610.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '263','libelle' => '''description' => ''],
  611.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '264','libelle' => '''description' => ''],
  612.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '267','libelle' => '''description' => ''],
  613.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '269','libelle' => '''description' => ''],
  614.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '270','libelle' => '''description' => ''],
  615.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '274','libelle' => '''description' => ''],
  616.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '278','libelle' => '''description' => ''],
  617.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '279','libelle' => '''description' => ''],
  618.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '281','libelle' => '''description' => ''],
  619.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '282','libelle' => '''description' => ''],
  620.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '283','libelle' => '''description' => ''],
  621.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '284','libelle' => '''description' => ''],
  622.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '285','libelle' => '''description' => ''],
  623.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '287','libelle' => '''description' => ''],
  624.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '288','libelle' => '''description' => ''],
  625.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '289','libelle' => '''description' => ''],
  626.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '290','libelle' => '''description' => ''],
  627.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '291','libelle' => '''description' => ''],
  628.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '293','libelle' => '''description' => ''],
  629.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '295','libelle' => '''description' => ''],
  630.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '296','libelle' => '''description' => ''],
  631.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '297','libelle' => '''description' => ''],
  632.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '298','libelle' => '''description' => ''],
  633.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '304','libelle' => '''description' => ''],
  634.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '305','libelle' => '''description' => ''],
  635.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '306','libelle' => '''description' => ''],
  636.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '307','libelle' => '''description' => ''],
  637.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '308','libelle' => '''description' => ''],
  638.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '309','libelle' => '''description' => ''],
  639.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '314','libelle' => '''description' => ''],
  640.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '320','libelle' => '''description' => ''],
  641.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '321','libelle' => '''description' => ''],
  642.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '324','libelle' => '''description' => ''],
  643.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '327','libelle' => '''description' => ''],
  644.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '328','libelle' => '''description' => ''],
  645.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '331','libelle' => '''description' => ''],
  646.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '335','libelle' => '''description' => ''],
  647.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '337','libelle' => '''description' => ''],
  648.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '338','libelle' => '''description' => ''],
  649.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '341','libelle' => '''description' => ''],
  650.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '342','libelle' => '''description' => ''],
  651.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '344','libelle' => '''description' => ''],
  652.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '345','libelle' => '''description' => ''],
  653.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '346','libelle' => '''description' => ''],
  654.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '347','libelle' => '''description' => ''],
  655.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '351','libelle' => '''description' => ''],
  656.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '353','libelle' => '''description' => ''],
  657.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '354','libelle' => '''description' => ''],
  658.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '355','libelle' => '''description' => ''],
  659.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '356','libelle' => '''description' => ''],
  660.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '357','libelle' => '''description' => ''],
  661.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '358','libelle' => '''description' => '']
  662.             );
  663.         }
  664.         if ($page == 4
  665.         {
  666.             $term "Pages 4";
  667.             $res = array
  668.             (
  669.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '359','libelle' => '''description' => ''],
  670.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '421','libelle' => '''description' => ''],
  671.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '428','libelle' => '''description' => ''],
  672.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '430','libelle' => '''description' => ''],
  673.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '431','libelle' => '''description' => ''],
  674.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '432','libelle' => '''description' => ''],
  675.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '434','libelle' => '''description' => ''],
  676.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '435','libelle' => '''description' => ''],
  677.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '436','libelle' => '''description' => ''],
  678.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '437','libelle' => '''description' => ''],
  679.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '439','libelle' => '''description' => ''],
  680.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '440','libelle' => '''description' => ''],
  681.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '445','libelle' => '''description' => ''],
  682.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '446','libelle' => '''description' => ''],
  683.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '449','libelle' => '''description' => ''],
  684.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '451','libelle' => '''description' => ''],
  685.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '453','libelle' => '''description' => ''],
  686.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '454','libelle' => '''description' => ''],
  687.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '457','libelle' => '''description' => ''],
  688.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '459','libelle' => '''description' => ''],
  689.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '463','libelle' => '''description' => ''],
  690.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '464','libelle' => '''description' => ''],
  691.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '477','libelle' => '''description' => ''],
  692.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '478','libelle' => '''description' => ''],
  693.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '483','libelle' => '''description' => ''],
  694.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '484','libelle' => '''description' => ''],
  695.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '485','libelle' => '''description' => ''],
  696.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '486','libelle' => '''description' => ''],
  697.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '487','libelle' => '''description' => ''],
  698.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '490','libelle' => '''description' => ''],
  699.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '491','libelle' => '''description' => ''],
  700.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '595','libelle' => '''description' => ''],
  701.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '597','libelle' => '''description' => ''],
  702.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '599','libelle' => '''description' => ''],
  703.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '601','libelle' => '''description' => ''],
  704.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '602','libelle' => '''description' => ''],
  705.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '604','libelle' => '''description' => ''],
  706.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '607','libelle' => '''description' => ''],
  707.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '608','libelle' => '''description' => ''],
  708.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '609','libelle' => '''description' => ''],
  709.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '610','libelle' => '''description' => ''],
  710.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '611','libelle' => '''description' => ''],
  711.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '612','libelle' => '''description' => ''],
  712.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '613','libelle' => '''description' => ''],
  713.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '614','libelle' => '''description' => ''],
  714.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '615','libelle' => '''description' => ''],
  715.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '616','libelle' => '''description' => ''],
  716.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '617','libelle' => '''description' => ''],
  717.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '618','libelle' => '''description' => ''],
  718.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '619','libelle' => '''description' => ''],
  719.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '627','libelle' => '''description' => ''],
  720.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '628','libelle' => '''description' => ''],
  721.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '629','libelle' => '''description' => ''],
  722.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '630','libelle' => '''description' => ''],
  723.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '640','libelle' => '''description' => ''],
  724.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '645','libelle' => '''description' => ''],
  725.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '646','libelle' => '''description' => ''],
  726.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '649','libelle' => '''description' => ''],
  727.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '650','libelle' => '''description' => ''],
  728.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '651','libelle' => '''description' => ''],
  729.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '652','libelle' => '''description' => ''],
  730.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '655','libelle' => '''description' => ''],
  731.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '661','libelle' => '''description' => ''],
  732.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '667','libelle' => '''description' => ''],
  733.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '673','libelle' => '''description' => ''],
  734.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '674','libelle' => '''description' => '']
  735.             );
  736.         }
  737.         if ($page == 5
  738.         {
  739.             $term "Pages 5";
  740.             $res = array
  741.             (
  742.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '675','libelle' => '''description' => ''],
  743.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '676','libelle' => '''description' => ''],
  744.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '677','libelle' => '''description' => ''],
  745.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '678','libelle' => '''description' => ''],
  746.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '679','libelle' => '''description' => ''],
  747.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '680','libelle' => '''description' => ''],
  748.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '683','libelle' => '''description' => ''],
  749.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '689','libelle' => '''description' => ''],
  750.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '690','libelle' => '''description' => ''],
  751.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '691','libelle' => '''description' => ''],
  752.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '692','libelle' => '''description' => ''],
  753.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '693','libelle' => '''description' => ''],
  754.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '694','libelle' => '''description' => ''],
  755.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '695','libelle' => '''description' => ''],
  756.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '696','libelle' => '''description' => ''],
  757.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '697','libelle' => '''description' => ''],
  758.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '698','libelle' => '''description' => ''],
  759.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '699','libelle' => '''description' => ''],
  760.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '700','libelle' => '''description' => ''],
  761.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '703','libelle' => '''description' => ''],
  762.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '704','libelle' => '''description' => ''],
  763.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '707','libelle' => '''description' => ''],
  764.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '708','libelle' => '''description' => ''],
  765.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '709','libelle' => '''description' => ''],
  766.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '710','libelle' => '''description' => ''],
  767.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '711','libelle' => '''description' => ''],
  768.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '712','libelle' => '''description' => ''],
  769.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '713','libelle' => '''description' => ''],
  770.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '714','libelle' => '''description' => ''],
  771.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '715','libelle' => '''description' => ''],
  772.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '716','libelle' => '''description' => ''],
  773.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '717','libelle' => '''description' => ''],
  774.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '719','libelle' => '''description' => ''],
  775.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '722','libelle' => '''description' => ''],
  776.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '724','libelle' => '''description' => ''],
  777.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '725','libelle' => '''description' => ''],
  778.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '726','libelle' => '''description' => ''],
  779.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '731','libelle' => '''description' => ''],
  780.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '736','libelle' => '''description' => ''],
  781.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '738','libelle' => '''description' => ''],
  782.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '740','libelle' => '''description' => ''],
  783.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '741','libelle' => '''description' => ''],
  784.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '742','libelle' => '''description' => ''],
  785.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '743','libelle' => '''description' => ''],
  786.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '744','libelle' => '''description' => ''],
  787.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '745','libelle' => '''description' => ''],
  788.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '747','libelle' => '''description' => ''],
  789.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '749','libelle' => '''description' => ''],
  790.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '750','libelle' => '''description' => ''],
  791.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '751','libelle' => '''description' => ''],
  792.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '752','libelle' => '''description' => ''],
  793.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '753','libelle' => '''description' => ''],
  794.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '754','libelle' => '''description' => ''],
  795.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '755','libelle' => '''description' => ''],
  796.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '756','libelle' => '''description' => ''],
  797.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '757','libelle' => '''description' => ''],
  798.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '758','libelle' => '''description' => ''],
  799.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '759','libelle' => '''description' => ''],
  800.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '763','libelle' => '''description' => ''],
  801.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '764','libelle' => '''description' => ''],
  802.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '765','libelle' => '''description' => ''],
  803.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '766','libelle' => '''description' => ''],
  804.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '768','libelle' => '''description' => ''],
  805.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '769','libelle' => '''description' => ''],
  806.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '770','libelle' => '''description' => ''],
  807.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '771','libelle' => '''description' => '']
  808.             );
  809.         }
  810.         if ($page == 6
  811.         {
  812.             $term "Pages 6";
  813.             $res = array
  814.             (
  815.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '772','libelle' => '''description' => ''],
  816.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '773','libelle' => '''description' => ''],
  817.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '774','libelle' => '''description' => ''],
  818.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '775','libelle' => '''description' => ''],
  819.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '777','libelle' => '''description' => ''],
  820.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '778','libelle' => '''description' => ''],
  821.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '779','libelle' => '''description' => ''],
  822.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '780','libelle' => '''description' => ''],
  823.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '790','libelle' => '''description' => ''],
  824.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '791','libelle' => '''description' => ''],
  825.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '794','libelle' => '''description' => ''],
  826.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '795','libelle' => '''description' => ''],
  827.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '798','libelle' => '''description' => ''],
  828.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '801','libelle' => '''description' => ''],
  829.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '802','libelle' => '''description' => ''],
  830.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '809','libelle' => '''description' => ''],
  831.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '817','libelle' => '''description' => ''],
  832.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '819','libelle' => '''description' => ''],
  833.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '838','libelle' => '''description' => ''],
  834.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '839','libelle' => '''description' => ''],
  835.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '840','libelle' => '''description' => ''],
  836.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '848','libelle' => '''description' => ''],
  837.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '849','libelle' => '''description' => ''],
  838.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '852','libelle' => '''description' => ''],
  839.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '853','libelle' => '''description' => ''],
  840.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '854','libelle' => '''description' => ''],
  841.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '855','libelle' => '''description' => ''],
  842.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '856','libelle' => '''description' => ''],
  843.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '859','libelle' => '''description' => ''],
  844.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '860','libelle' => '''description' => ''],
  845.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '861','libelle' => '''description' => ''],
  846.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '862','libelle' => '''description' => ''],
  847.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '865','libelle' => '''description' => ''],
  848.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '866','libelle' => '''description' => ''],
  849.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '867','libelle' => '''description' => ''],
  850.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '870','libelle' => '''description' => ''],
  851.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '871','libelle' => '''description' => ''],
  852.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '872','libelle' => '''description' => ''],
  853.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '873','libelle' => '''description' => ''],
  854.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '874','libelle' => '''description' => ''],
  855.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '876','libelle' => '''description' => ''],
  856.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '877','libelle' => '''description' => ''],
  857.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '878','libelle' => '''description' => ''],
  858.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '879','libelle' => '''description' => ''],
  859.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '881','libelle' => '''description' => ''],
  860.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '882','libelle' => '''description' => ''],
  861.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '883','libelle' => '''description' => ''],
  862.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '884','libelle' => '''description' => ''],
  863.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '888','libelle' => '''description' => ''],
  864.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '889','libelle' => '''description' => ''],
  865.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '890','libelle' => '''description' => ''],
  866.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '891','libelle' => '''description' => ''],
  867.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '892','libelle' => '''description' => ''],
  868.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '893','libelle' => '''description' => ''],
  869.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '894','libelle' => '''description' => ''],
  870.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '895','libelle' => '''description' => ''],
  871.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '896','libelle' => '''description' => ''],
  872.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '897','libelle' => '''description' => ''],
  873.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '898','libelle' => '''description' => ''],
  874.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '899','libelle' => '''description' => ''],
  875.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '900','libelle' => '''description' => ''],
  876.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '901','libelle' => '''description' => ''],
  877.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '902','libelle' => '''description' => ''],
  878.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '903','libelle' => '''description' => ''],
  879.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '904','libelle' => '''description' => ''],
  880.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '906','libelle' => '''description' => '']
  881.             );
  882.         }
  883.         if ($page == 7
  884.         {
  885.             $term "Pages 7";
  886.             $res = array
  887.             (
  888.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '907','libelle' => '''description' => ''],
  889.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '908','libelle' => '''description' => ''],
  890.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '918','libelle' => '''description' => ''],
  891.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '919','libelle' => '''description' => ''],
  892.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '920','libelle' => '''description' => ''],
  893.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '921','libelle' => '''description' => ''],
  894.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '922','libelle' => '''description' => ''],
  895.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '923','libelle' => '''description' => ''],
  896.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '924','libelle' => '''description' => ''],
  897.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '925','libelle' => '''description' => ''],
  898.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '926','libelle' => '''description' => ''],
  899.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '927','libelle' => '''description' => ''],
  900.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '928','libelle' => '''description' => ''],
  901.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '929','libelle' => '''description' => ''],
  902.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '930','libelle' => '''description' => ''],
  903.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '939','libelle' => '''description' => ''],
  904.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '940','libelle' => '''description' => ''],
  905.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '941','libelle' => '''description' => ''],
  906.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '942','libelle' => '''description' => ''],
  907.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '943','libelle' => '''description' => ''],
  908.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '944','libelle' => '''description' => ''],
  909.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '945','libelle' => '''description' => ''],
  910.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '946','libelle' => '''description' => ''],
  911.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '947','libelle' => '''description' => ''],
  912.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '948','libelle' => '''description' => ''],
  913.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '949','libelle' => '''description' => ''],
  914.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '950','libelle' => '''description' => ''],
  915.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '951','libelle' => '''description' => ''],
  916.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '952','libelle' => '''description' => ''],
  917.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '953','libelle' => '''description' => ''],
  918.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '954','libelle' => '''description' => ''],
  919.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '955','libelle' => '''description' => ''],
  920.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '956','libelle' => '''description' => ''],
  921.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '957','libelle' => '''description' => ''],
  922.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '958','libelle' => '''description' => ''],
  923.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '959','libelle' => '''description' => ''],
  924.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '960','libelle' => '''description' => ''],
  925.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '977','libelle' => '''description' => ''],
  926.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '986','libelle' => '''description' => ''],
  927.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '989','libelle' => '''description' => ''],
  928.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '990','libelle' => '''description' => ''],
  929.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '991','libelle' => '''description' => ''],
  930.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '992','libelle' => '''description' => ''],
  931.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '993','libelle' => '''description' => ''],
  932.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '994','libelle' => '''description' => ''],
  933.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '995','libelle' => '''description' => ''],
  934.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '996','libelle' => '''description' => ''],
  935.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '997','libelle' => '''description' => ''],
  936.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '998','libelle' => '''description' => ''],
  937.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '999','libelle' => '''description' => ''],
  938.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1000','libelle' => '''description' => ''],
  939.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1001','libelle' => '''description' => ''],
  940.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1002','libelle' => '''description' => ''],
  941.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1003','libelle' => '''description' => ''],
  942.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1004','libelle' => '''description' => ''],
  943.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1005','libelle' => '''description' => ''],
  944.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1006','libelle' => '''description' => ''],
  945.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1007','libelle' => '''description' => ''],
  946.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1008','libelle' => '''description' => ''],
  947.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1009','libelle' => '''description' => ''],
  948.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1014','libelle' => '''description' => ''],
  949.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1015','libelle' => '''description' => ''],
  950.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1022','libelle' => '''description' => ''],
  951.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1023','libelle' => '''description' => ''],
  952.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1024','libelle' => '''description' => ''],
  953.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1025','libelle' => '''description' => '']
  954.             );
  955.         }
  956.         if ($page == 8
  957.         {
  958.             $term "Pages 8";
  959.             $res = array
  960.             (
  961.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1026','libelle' => '''description' => ''],
  962.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1027','libelle' => '''description' => ''],
  963.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1028','libelle' => '''description' => ''],
  964.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1029','libelle' => '''description' => ''],
  965.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1030','libelle' => '''description' => ''],
  966.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1046','libelle' => '''description' => ''],
  967.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1048','libelle' => '''description' => ''],
  968.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1049','libelle' => '''description' => ''],
  969.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1050','libelle' => '''description' => ''],
  970.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1051','libelle' => '''description' => ''],
  971.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1052','libelle' => '''description' => ''],
  972.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1053','libelle' => '''description' => ''],
  973.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1054','libelle' => '''description' => ''],
  974.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1055','libelle' => '''description' => ''],
  975.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1056','libelle' => '''description' => ''],
  976.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1057','libelle' => '''description' => ''],
  977.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1058','libelle' => '''description' => ''],
  978.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1059','libelle' => '''description' => ''],
  979.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1060','libelle' => '''description' => ''],
  980.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1061','libelle' => '''description' => ''],
  981.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1062','libelle' => '''description' => ''],
  982.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1079','libelle' => '''description' => ''],
  983.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1080','libelle' => '''description' => ''],
  984.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1081','libelle' => '''description' => ''],
  985.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1082','libelle' => '''description' => ''],
  986.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1083','libelle' => '''description' => ''],
  987.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1084','libelle' => '''description' => ''],
  988.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1085','libelle' => '''description' => ''],
  989.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1086','libelle' => '''description' => ''],
  990.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1087','libelle' => '''description' => ''],
  991.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1088','libelle' => '''description' => ''],
  992.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1089','libelle' => '''description' => ''],
  993.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1090','libelle' => '''description' => ''],
  994.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1091','libelle' => '''description' => ''],
  995.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1092','libelle' => '''description' => ''],
  996.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1094','libelle' => '''description' => ''],
  997.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1096','libelle' => '''description' => ''],
  998.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1108','libelle' => '''description' => ''],
  999.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1109','libelle' => '''description' => ''],
  1000.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1110','libelle' => '''description' => ''],
  1001.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1114','libelle' => '''description' => ''],
  1002.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1115','libelle' => '''description' => ''],
  1003.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1116','libelle' => '''description' => ''],
  1004.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1117','libelle' => '''description' => ''],
  1005.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1118','libelle' => '''description' => ''],
  1006.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1119','libelle' => '''description' => ''],
  1007.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1120','libelle' => '''description' => ''],
  1008.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1121','libelle' => '''description' => ''],
  1009.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1122','libelle' => '''description' => ''],
  1010.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1166','libelle' => '''description' => ''],
  1011.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1167','libelle' => '''description' => ''],
  1012.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1168','libelle' => '''description' => ''],
  1013.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1169','libelle' => '''description' => ''],
  1014.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1170','libelle' => '''description' => ''],
  1015.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1171','libelle' => '''description' => ''],
  1016.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1181','libelle' => '''description' => ''],
  1017.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1182','libelle' => '''description' => ''],
  1018.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1191','libelle' => '''description' => ''],
  1019.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1192','libelle' => '''description' => ''],
  1020.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1195','libelle' => '''description' => ''],
  1021.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1196','libelle' => '''description' => ''],
  1022.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1202','libelle' => '''description' => ''],
  1023.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1204','libelle' => '''description' => ''],
  1024.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1210','libelle' => '''description' => ''],
  1025.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1211','libelle' => '''description' => ''],
  1026.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1214','libelle' => '''description' => '']
  1027.             );
  1028.         }
  1029.         if ($page == 9
  1030.         {
  1031.             $term "Pages 9";
  1032.             $res = array
  1033.             (
  1034.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1215','libelle' => '''description' => ''],
  1035.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1216','libelle' => '''description' => ''],
  1036.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1223','libelle' => '''description' => ''],
  1037.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1224','libelle' => '''description' => ''],
  1038.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1225','libelle' => '''description' => ''],
  1039.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1226','libelle' => '''description' => ''],
  1040.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1227','libelle' => '''description' => ''],
  1041.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1228','libelle' => '''description' => ''],
  1042.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1229','libelle' => '''description' => ''],
  1043.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1230','libelle' => '''description' => ''],
  1044.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1231','libelle' => '''description' => ''],
  1045.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1232','libelle' => '''description' => ''],
  1046.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1233','libelle' => '''description' => ''],
  1047.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1234','libelle' => '''description' => ''],
  1048.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1235','libelle' => '''description' => ''],
  1049.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1236','libelle' => '''description' => ''],
  1050.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1237','libelle' => '''description' => ''],
  1051.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1238','libelle' => '''description' => ''],
  1052.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1239','libelle' => '''description' => ''],
  1053.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1240','libelle' => '''description' => ''],
  1054.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1241','libelle' => '''description' => ''],
  1055.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1242','libelle' => '''description' => ''],
  1056.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1243','libelle' => '''description' => ''],
  1057.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1244','libelle' => '''description' => ''],
  1058.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1245','libelle' => '''description' => ''],
  1059.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1246','libelle' => '''description' => ''],
  1060.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1247','libelle' => '''description' => ''],
  1061.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1248','libelle' => '''description' => ''],
  1062.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1249','libelle' => '''description' => ''],
  1063.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1250','libelle' => '''description' => ''],
  1064.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1251','libelle' => '''description' => ''],
  1065.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1255','libelle' => '''description' => ''],
  1066.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1282','libelle' => '''description' => ''],
  1067.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1284','libelle' => '''description' => ''],
  1068.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1285','libelle' => '''description' => ''],
  1069.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1287','libelle' => '''description' => ''],
  1070.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1288','libelle' => '''description' => ''],
  1071.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1289','libelle' => '''description' => ''],
  1072.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1290','libelle' => '''description' => ''],
  1073.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1291','libelle' => '''description' => ''],
  1074.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1292','libelle' => '''description' => ''],
  1075.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1294','libelle' => '''description' => ''],
  1076.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1295','libelle' => '''description' => ''],
  1077.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1297','libelle' => '''description' => ''],
  1078.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1298','libelle' => '''description' => ''],
  1079.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1299','libelle' => '''description' => ''],
  1080.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1300','libelle' => '''description' => ''],
  1081.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1301','libelle' => '''description' => ''],
  1082.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1302','libelle' => '''description' => ''],
  1083.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1303','libelle' => '''description' => ''],
  1084.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1304','libelle' => '''description' => ''],
  1085.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1305','libelle' => '''description' => ''],
  1086.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1306','libelle' => '''description' => ''],
  1087.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1307','libelle' => '''description' => ''],
  1088.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1308','libelle' => '''description' => ''],
  1089.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1309','libelle' => '''description' => ''],
  1090.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1310','libelle' => '''description' => ''],
  1091.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1311','libelle' => '''description' => ''],
  1092.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1312','libelle' => '''description' => ''],
  1093.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1313','libelle' => '''description' => ''],
  1094.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1314','libelle' => '''description' => ''],
  1095.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1316','libelle' => '''description' => ''],
  1096.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1318','libelle' => '''description' => ''],
  1097.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1319','libelle' => '''description' => ''],
  1098.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1334','libelle' => '''description' => ''],
  1099.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1339','libelle' => '''description' => '']
  1100.             );
  1101.         }
  1102.         if ($page == 10
  1103.         {
  1104.             $term "Pages 10";
  1105.             $res = array
  1106.             (
  1107.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1340','libelle' => '''description' => ''],
  1108.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1342','libelle' => '''description' => ''],
  1109.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1345','libelle' => '''description' => ''],
  1110.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1348','libelle' => '''description' => ''],
  1111.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1350','libelle' => '''description' => ''],
  1112.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1352','libelle' => '''description' => ''],
  1113.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1353','libelle' => '''description' => ''],
  1114.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1354','libelle' => '''description' => ''],
  1115.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1355','libelle' => '''description' => ''],
  1116.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1356','libelle' => '''description' => ''],
  1117.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1357','libelle' => '''description' => ''],
  1118.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1358','libelle' => '''description' => ''],
  1119.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1359','libelle' => '''description' => ''],
  1120.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1360','libelle' => '''description' => ''],
  1121.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1361','libelle' => '''description' => ''],
  1122.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1362','libelle' => '''description' => ''],
  1123.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1363','libelle' => '''description' => ''],
  1124.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1364','libelle' => '''description' => ''],
  1125.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1365','libelle' => '''description' => ''],
  1126.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1366','libelle' => '''description' => ''],
  1127.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1367','libelle' => '''description' => ''],
  1128.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1368','libelle' => '''description' => ''],
  1129.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1369','libelle' => '''description' => ''],
  1130.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1371','libelle' => '''description' => ''],
  1131.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1379','libelle' => '''description' => ''],
  1132.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1380','libelle' => '''description' => ''],
  1133.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1381','libelle' => '''description' => ''],
  1134.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1382','libelle' => '''description' => ''],
  1135.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1383','libelle' => '''description' => ''],
  1136.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1384','libelle' => '''description' => ''],
  1137.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1385','libelle' => '''description' => ''],
  1138.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1386','libelle' => '''description' => ''],
  1139.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1387','libelle' => '''description' => ''],
  1140.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1388','libelle' => '''description' => ''],
  1141.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1389','libelle' => '''description' => ''],
  1142.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1390','libelle' => '''description' => ''],
  1143.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1391','libelle' => '''description' => ''],
  1144.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1392','libelle' => '''description' => ''],
  1145.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1393','libelle' => '''description' => ''],
  1146.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1394','libelle' => '''description' => ''],
  1147.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1395','libelle' => '''description' => ''],
  1148.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1399','libelle' => '''description' => ''],
  1149.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1400','libelle' => '''description' => ''],
  1150.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1410','libelle' => '''description' => ''],
  1151.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1414','libelle' => '''description' => ''],
  1152.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1416','libelle' => '''description' => ''],
  1153.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1428','libelle' => '''description' => ''],
  1154.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1433','libelle' => '''description' => ''],
  1155.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1447','libelle' => '''description' => ''],
  1156.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1471','libelle' => '''description' => ''],
  1157.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1474','libelle' => '''description' => ''],
  1158.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1477','libelle' => '''description' => ''],
  1159.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1480','libelle' => '''description' => ''],
  1160.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1517','libelle' => '''description' => ''],
  1161.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1519','libelle' => '''description' => ''],
  1162.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1524','libelle' => '''description' => ''],
  1163.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1529','libelle' => '''description' => ''],
  1164.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1530','libelle' => '''description' => ''],
  1165.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1531','libelle' => '''description' => ''],
  1166.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1532','libelle' => '''description' => ''],
  1167.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1533','libelle' => '''description' => ''],
  1168.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1534','libelle' => '''description' => ''],
  1169.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1535','libelle' => '''description' => ''],
  1170.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1536','libelle' => '''description' => ''],
  1171.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1537','libelle' => '''description' => ''],
  1172.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1538','libelle' => '''description' => '']
  1173.             );
  1174.         }
  1175.         if ($page == 11
  1176.         {
  1177.             $term "Pages 11";
  1178.             $res = array
  1179.             (
  1180.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1539','libelle' => '''description' => ''],
  1181.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1540','libelle' => '''description' => ''],
  1182.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1541','libelle' => '''description' => ''],
  1183.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1542','libelle' => '''description' => ''],
  1184.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1543','libelle' => '''description' => ''],
  1185.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1544','libelle' => '''description' => ''],
  1186.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1545','libelle' => '''description' => ''],
  1187.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1546','libelle' => '''description' => ''],
  1188.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1547','libelle' => '''description' => ''],
  1189.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1548','libelle' => '''description' => ''],
  1190.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1549','libelle' => '''description' => ''],
  1191.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1550','libelle' => '''description' => ''],
  1192.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1551','libelle' => '''description' => ''],
  1193.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1552','libelle' => '''description' => ''],
  1194.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1553','libelle' => '''description' => ''],
  1195.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1554','libelle' => '''description' => ''],
  1196.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1555','libelle' => '''description' => ''],
  1197.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1556','libelle' => '''description' => ''],
  1198.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1557','libelle' => '''description' => ''],
  1199.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1558','libelle' => '''description' => ''],
  1200.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1559','libelle' => '''description' => ''],
  1201.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1560','libelle' => '''description' => ''],
  1202.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1561','libelle' => '''description' => ''],
  1203.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1562','libelle' => '''description' => ''],
  1204.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1563','libelle' => '''description' => ''],
  1205.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1564','libelle' => '''description' => ''],
  1206.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1565','libelle' => '''description' => ''],
  1207.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1566','libelle' => '''description' => ''],
  1208.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1567','libelle' => '''description' => ''],
  1209.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1568','libelle' => '''description' => ''],
  1210.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1569','libelle' => '''description' => ''],
  1211.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1570','libelle' => '''description' => ''],
  1212.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1571','libelle' => '''description' => ''],
  1213.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1572','libelle' => '''description' => ''],
  1214.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1573','libelle' => '''description' => ''],
  1215.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1574','libelle' => '''description' => ''],
  1216.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1575','libelle' => '''description' => ''],
  1217.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1576','libelle' => '''description' => ''],
  1218.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1577','libelle' => '''description' => ''],
  1219.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1578','libelle' => '''description' => ''],
  1220.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1579','libelle' => '''description' => ''],
  1221.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1580','libelle' => '''description' => ''],
  1222.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1581','libelle' => '''description' => ''],
  1223.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1582','libelle' => '''description' => ''],
  1224.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1583','libelle' => '''description' => ''],
  1225.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1584','libelle' => '''description' => ''],
  1226.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1585','libelle' => '''description' => ''],
  1227.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1586','libelle' => '''description' => ''],
  1228.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1587','libelle' => '''description' => ''],
  1229.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1588','libelle' => '''description' => ''],
  1230.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1589','libelle' => '''description' => ''],
  1231.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1590','libelle' => '''description' => ''],
  1232.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1591','libelle' => '''description' => ''],
  1233.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1592','libelle' => '''description' => ''],
  1234.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1593','libelle' => '''description' => ''],
  1235.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1594','libelle' => '''description' => ''],
  1236.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1595','libelle' => '''description' => ''],
  1237.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1596','libelle' => '''description' => ''],
  1238.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1597','libelle' => '''description' => ''],
  1239.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1598','libelle' => '''description' => ''],
  1240.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1599','libelle' => '''description' => ''],
  1241.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1600','libelle' => '''description' => ''],
  1242.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1601','libelle' => '''description' => ''],
  1243.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1602','libelle' => '''description' => ''],
  1244.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1603','libelle' => '''description' => ''],
  1245.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1604','libelle' => '''description' => '']
  1246.             );
  1247.         }
  1248.         if ($page == 12
  1249.         {
  1250.             $term "Pages 12";
  1251.             $res = array
  1252.             (
  1253.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1605','libelle' => '''description' => ''],
  1254.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1606','libelle' => '''description' => ''],
  1255.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1607','libelle' => '''description' => ''],
  1256.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1608','libelle' => '''description' => ''],
  1257.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1609','libelle' => '''description' => ''],
  1258.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1610','libelle' => '''description' => ''],
  1259.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1611','libelle' => '''description' => ''],
  1260.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1612','libelle' => '''description' => ''],
  1261.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1613','libelle' => '''description' => ''],
  1262.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1614','libelle' => '''description' => ''],
  1263.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1615','libelle' => '''description' => ''],
  1264.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1616','libelle' => '''description' => ''],
  1265.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1617','libelle' => '''description' => ''],
  1266.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1627','libelle' => '''description' => ''],
  1267.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1629','libelle' => '''description' => ''],
  1268.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1630','libelle' => '''description' => ''],
  1269.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1642','libelle' => '''description' => ''],
  1270.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1670','libelle' => '''description' => ''],
  1271.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1671','libelle' => '''description' => ''],
  1272.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1672','libelle' => '''description' => ''],
  1273.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1685','libelle' => '''description' => ''],
  1274.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1686','libelle' => '''description' => ''],
  1275.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1687','libelle' => '''description' => ''],
  1276.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1688','libelle' => '''description' => ''],
  1277.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1689','libelle' => '''description' => ''],
  1278.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1690','libelle' => '''description' => ''],
  1279.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1691','libelle' => '''description' => ''],
  1280.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1692','libelle' => '''description' => ''],
  1281.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1693','libelle' => '''description' => ''],
  1282.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1700','libelle' => '''description' => ''],
  1283.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1701','libelle' => '''description' => ''],
  1284.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1702','libelle' => '''description' => ''],
  1285.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1705','libelle' => '''description' => ''],
  1286.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1721','libelle' => '''description' => ''],
  1287.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1749','libelle' => '''description' => ''],
  1288.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1753','libelle' => '''description' => ''],
  1289.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1755','libelle' => '''description' => ''],
  1290.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1768','libelle' => '''description' => ''],
  1291.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1773','libelle' => '''description' => ''],
  1292.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1774','libelle' => '''description' => ''],
  1293.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1775','libelle' => '''description' => ''],
  1294.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1776','libelle' => '''description' => ''],
  1295.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1777','libelle' => '''description' => ''],
  1296.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1778','libelle' => '''description' => ''],
  1297.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1779','libelle' => '''description' => ''],
  1298.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1780','libelle' => '''description' => ''],
  1299.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1781','libelle' => '''description' => ''],
  1300.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1782','libelle' => '''description' => ''],
  1301.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1783','libelle' => '''description' => ''],
  1302.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1784','libelle' => '''description' => ''],
  1303.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1785','libelle' => '''description' => ''],
  1304.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1786','libelle' => '''description' => ''],
  1305.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1787','libelle' => '''description' => ''],
  1306.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1788','libelle' => '''description' => ''],
  1307.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1789','libelle' => '''description' => ''],
  1308.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1790','libelle' => '''description' => ''],
  1309.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1791','libelle' => '''description' => ''],
  1310.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1792','libelle' => '''description' => ''],
  1311.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1793','libelle' => '''description' => ''],
  1312.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1794','libelle' => '''description' => ''],
  1313.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1795','libelle' => '''description' => ''],
  1314.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1796','libelle' => '''description' => ''],
  1315.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1797','libelle' => '''description' => ''],
  1316.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1798','libelle' => '''description' => ''],
  1317.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1799','libelle' => '''description' => ''],
  1318.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1800','libelle' => '''description' => '']
  1319.             );
  1320.         }
  1321.         if ($page == 13
  1322.         {
  1323.             $term "Pages 13";
  1324.             $res = array
  1325.             (
  1326.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1801','libelle' => '''description' => ''],
  1327.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1802','libelle' => '''description' => ''],
  1328.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1803','libelle' => '''description' => ''],
  1329.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1804','libelle' => '''description' => ''],
  1330.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1805','libelle' => '''description' => ''],
  1331.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1806','libelle' => '''description' => ''],
  1332.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1807','libelle' => '''description' => ''],
  1333.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1808','libelle' => '''description' => ''],
  1334.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1809','libelle' => '''description' => ''],
  1335.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1810','libelle' => '''description' => ''],
  1336.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1811','libelle' => '''description' => ''],
  1337.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1812','libelle' => '''description' => ''],
  1338.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1813','libelle' => '''description' => ''],
  1339.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1814','libelle' => '''description' => ''],
  1340.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1815','libelle' => '''description' => ''],
  1341.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1816','libelle' => '''description' => ''],
  1342.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1817','libelle' => '''description' => ''],
  1343.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1818','libelle' => '''description' => ''],
  1344.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1819','libelle' => '''description' => ''],
  1345.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1820','libelle' => '''description' => ''],
  1346.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1821','libelle' => '''description' => ''],
  1347.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1822','libelle' => '''description' => ''],
  1348.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1823','libelle' => '''description' => ''],
  1349.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1824','libelle' => '''description' => ''],
  1350.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1825','libelle' => '''description' => ''],
  1351.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1826','libelle' => '''description' => ''],
  1352.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1827','libelle' => '''description' => ''],
  1353.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1828','libelle' => '''description' => ''],
  1354.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1829','libelle' => '''description' => ''],
  1355.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1830','libelle' => '''description' => ''],
  1356.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1831','libelle' => '''description' => ''],
  1357.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1832','libelle' => '''description' => ''],
  1358.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1833','libelle' => '''description' => ''],
  1359.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1834','libelle' => '''description' => ''],
  1360.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1835','libelle' => '''description' => ''],
  1361.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1836','libelle' => '''description' => ''],
  1362.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1837','libelle' => '''description' => ''],
  1363.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1838','libelle' => '''description' => ''],
  1364.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1839','libelle' => '''description' => ''],
  1365.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1840','libelle' => '''description' => ''],
  1366.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1841','libelle' => '''description' => ''],
  1367.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1842','libelle' => '''description' => ''],
  1368.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1843','libelle' => '''description' => ''],
  1369.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1844','libelle' => '''description' => ''],
  1370.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1845','libelle' => '''description' => ''],
  1371.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1846','libelle' => '''description' => ''],
  1372.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1847','libelle' => '''description' => ''],
  1373.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1848','libelle' => '''description' => ''],
  1374.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1849','libelle' => '''description' => ''],
  1375.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1850','libelle' => '''description' => ''],
  1376.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1851','libelle' => '''description' => ''],
  1377.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1852','libelle' => '''description' => ''],
  1378.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1865','libelle' => '''description' => ''],
  1379.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1866','libelle' => '''description' => ''],
  1380.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1871','libelle' => '''description' => ''],
  1381.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1872','libelle' => '''description' => ''],
  1382.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1876','libelle' => '''description' => ''],
  1383.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1877','libelle' => '''description' => ''],
  1384.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1878','libelle' => '''description' => ''],
  1385.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1879','libelle' => '''description' => ''],
  1386.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1880','libelle' => '''description' => ''],
  1387.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1881','libelle' => '''description' => ''],
  1388.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1882','libelle' => '''description' => ''],
  1389.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1883','libelle' => '''description' => ''],
  1390.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1884','libelle' => '''description' => ''],
  1391.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1885','libelle' => '''description' => '']
  1392.             );
  1393.         }
  1394.         if ($page == 14
  1395.         {
  1396.             $term "Pages 14";
  1397.             $res = array
  1398.             (
  1399.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1886','libelle' => '''description' => ''],
  1400.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1898','libelle' => '''description' => ''],
  1401.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1902','libelle' => '''description' => ''],
  1402.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1920','libelle' => '''description' => ''],
  1403.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1922','libelle' => '''description' => ''],
  1404.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1923','libelle' => '''description' => ''],
  1405.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1926','libelle' => '''description' => ''],
  1406.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1927','libelle' => '''description' => ''],
  1407.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1928','libelle' => '''description' => ''],
  1408.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1929','libelle' => '''description' => ''],
  1409.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1930','libelle' => '''description' => ''],
  1410.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1931','libelle' => '''description' => ''],
  1411.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1932','libelle' => '''description' => ''],
  1412.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1933','libelle' => '''description' => ''],
  1413.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1934','libelle' => '''description' => ''],
  1414.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1935','libelle' => '''description' => ''],
  1415.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1936','libelle' => '''description' => ''],
  1416.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1937','libelle' => '''description' => ''],
  1417.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1938','libelle' => '''description' => ''],
  1418.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1939','libelle' => '''description' => ''],
  1419.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1940','libelle' => '''description' => ''],
  1420.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1941','libelle' => '''description' => ''],
  1421.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1942','libelle' => '''description' => ''],
  1422.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1943','libelle' => '''description' => ''],
  1423.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1944','libelle' => '''description' => ''],
  1424.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1945','libelle' => '''description' => ''],
  1425.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1946','libelle' => '''description' => ''],
  1426.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1947','libelle' => '''description' => ''],
  1427.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1948','libelle' => '''description' => ''],
  1428.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1949','libelle' => '''description' => ''],
  1429.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1950','libelle' => '''description' => ''],
  1430.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1951','libelle' => '''description' => ''],
  1431.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1952','libelle' => '''description' => ''],
  1432.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1953','libelle' => '''description' => ''],
  1433.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1954','libelle' => '''description' => ''],
  1434.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1955','libelle' => '''description' => ''],
  1435.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1956','libelle' => '''description' => ''],
  1436.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1957','libelle' => '''description' => ''],
  1437.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1958','libelle' => '''description' => ''],
  1438.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1959','libelle' => '''description' => ''],
  1439.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1960','libelle' => '''description' => ''],
  1440.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1961','libelle' => '''description' => ''],
  1441.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1962','libelle' => '''description' => ''],
  1442.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1963','libelle' => '''description' => ''],
  1443.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1964','libelle' => '''description' => ''],
  1444.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1965','libelle' => '''description' => ''],
  1445.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1966','libelle' => '''description' => ''],
  1446.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1967','libelle' => '''description' => ''],
  1447.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1968','libelle' => '''description' => ''],
  1448.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1969','libelle' => '''description' => ''],
  1449.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1970','libelle' => '''description' => ''],
  1450.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1971','libelle' => '''description' => ''],
  1451.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1972','libelle' => '''description' => ''],
  1452.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1973','libelle' => '''description' => ''],
  1453.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1974','libelle' => '''description' => ''],
  1454.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1975','libelle' => '''description' => ''],
  1455.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1976','libelle' => '''description' => ''],
  1456.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1977','libelle' => '''description' => ''],
  1457.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1978','libelle' => '''description' => ''],
  1458.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1979','libelle' => '''description' => ''],
  1459.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1980','libelle' => '''description' => ''],
  1460.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1981','libelle' => '''description' => ''],
  1461.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1982','libelle' => '''description' => ''],
  1462.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1983','libelle' => '''description' => ''],
  1463.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1984','libelle' => '''description' => ''],
  1464.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1985','libelle' => '''description' => '']
  1465.             );
  1466.         }
  1467.         if ($page == 15
  1468.         {
  1469.             $term "Pages 15";
  1470.             $res = array
  1471.             (
  1472.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1986','libelle' => '''description' => ''],
  1473.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1987','libelle' => '''description' => ''],
  1474.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1988','libelle' => '''description' => ''],
  1475.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1989','libelle' => '''description' => ''],
  1476.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1990','libelle' => '''description' => ''],
  1477.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1991','libelle' => '''description' => ''],
  1478.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1992','libelle' => '''description' => ''],
  1479.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1993','libelle' => '''description' => ''],
  1480.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1994','libelle' => '''description' => ''],
  1481.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1995','libelle' => '''description' => ''],
  1482.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1996','libelle' => '''description' => ''],
  1483.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1997','libelle' => '''description' => ''],
  1484.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1998','libelle' => '''description' => ''],
  1485.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '1999','libelle' => '''description' => ''],
  1486.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2000','libelle' => '''description' => ''],
  1487.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2001','libelle' => '''description' => ''],
  1488.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2002','libelle' => '''description' => ''],
  1489.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2003','libelle' => '''description' => ''],
  1490.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2004','libelle' => '''description' => ''],
  1491.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2005','libelle' => '''description' => ''],
  1492.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2006','libelle' => '''description' => ''],
  1493.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2007','libelle' => '''description' => ''],
  1494.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2008','libelle' => '''description' => ''],
  1495.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2009','libelle' => '''description' => ''],
  1496.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2010','libelle' => '''description' => ''],
  1497.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2011','libelle' => '''description' => ''],
  1498.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2012','libelle' => '''description' => ''],
  1499.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2013','libelle' => '''description' => ''],
  1500.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2014','libelle' => '''description' => ''],
  1501.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2015','libelle' => '''description' => ''],
  1502.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2016','libelle' => '''description' => ''],
  1503.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2017','libelle' => '''description' => ''],
  1504.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2018','libelle' => '''description' => ''],
  1505.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2019','libelle' => '''description' => ''],
  1506.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2020','libelle' => '''description' => ''],
  1507.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2021','libelle' => '''description' => ''],
  1508.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2022','libelle' => '''description' => ''],
  1509.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2023','libelle' => '''description' => ''],
  1510.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2024','libelle' => '''description' => ''],
  1511.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2025','libelle' => '''description' => ''],
  1512.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2026','libelle' => '''description' => ''],
  1513.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2027','libelle' => '''description' => ''],
  1514.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2028','libelle' => '''description' => ''],
  1515.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2029','libelle' => '''description' => ''],
  1516.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2030','libelle' => '''description' => ''],
  1517.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2031','libelle' => '''description' => ''],
  1518.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2032','libelle' => '''description' => ''],
  1519.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2033','libelle' => '''description' => ''],
  1520.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2034','libelle' => '''description' => ''],
  1521.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2035','libelle' => '''description' => ''],
  1522.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2036','libelle' => '''description' => ''],
  1523.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2037','libelle' => '''description' => ''],
  1524.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2038','libelle' => '''description' => ''],
  1525.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2039','libelle' => '''description' => ''],
  1526.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2040','libelle' => '''description' => ''],
  1527.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2041','libelle' => '''description' => ''],
  1528.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2042','libelle' => '''description' => ''],
  1529.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2043','libelle' => '''description' => ''],
  1530.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2044','libelle' => '''description' => ''],
  1531.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2045','libelle' => '''description' => ''],
  1532.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2046','libelle' => '''description' => ''],
  1533.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2047','libelle' => '''description' => ''],
  1534.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2048','libelle' => '''description' => ''],
  1535.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2049','libelle' => '''description' => ''],
  1536.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2050','libelle' => '''description' => ''],
  1537.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2051','libelle' => '''description' => '']
  1538.             );
  1539.         }
  1540.         if ($page == 16
  1541.         {
  1542.             $term "Pages 16";
  1543.             $res = array
  1544.             (
  1545.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2052','libelle' => '''description' => ''],
  1546.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2053','libelle' => '''description' => ''],
  1547.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2054','libelle' => '''description' => ''],
  1548.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2055','libelle' => '''description' => ''],
  1549.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2056','libelle' => '''description' => ''],
  1550.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2057','libelle' => '''description' => ''],
  1551.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2058','libelle' => '''description' => ''],
  1552.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2059','libelle' => '''description' => ''],
  1553.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2060','libelle' => '''description' => ''],
  1554.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2061','libelle' => '''description' => ''],
  1555.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2062','libelle' => '''description' => ''],
  1556.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2063','libelle' => '''description' => ''],
  1557.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2064','libelle' => '''description' => ''],
  1558.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2065','libelle' => '''description' => ''],
  1559.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2066','libelle' => '''description' => ''],
  1560.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2067','libelle' => '''description' => ''],
  1561.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2068','libelle' => '''description' => ''],
  1562.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2069','libelle' => '''description' => ''],
  1563.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2070','libelle' => '''description' => ''],
  1564.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2071','libelle' => '''description' => ''],
  1565.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2072','libelle' => '''description' => ''],
  1566.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2073','libelle' => '''description' => ''],
  1567.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2074','libelle' => '''description' => ''],
  1568.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2075','libelle' => '''description' => ''],
  1569.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2076','libelle' => '''description' => ''],
  1570.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2077','libelle' => '''description' => ''],
  1571.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2078','libelle' => '''description' => ''],
  1572.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2079','libelle' => '''description' => ''],
  1573.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2080','libelle' => '''description' => ''],
  1574.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2081','libelle' => '''description' => ''],
  1575.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2082','libelle' => '''description' => ''],
  1576.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2083','libelle' => '''description' => ''],
  1577.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2084','libelle' => '''description' => ''],
  1578.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2085','libelle' => '''description' => ''],
  1579.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2086','libelle' => '''description' => ''],
  1580.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2087','libelle' => '''description' => ''],
  1581.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2088','libelle' => '''description' => ''],
  1582.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2089','libelle' => '''description' => ''],
  1583.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2090','libelle' => '''description' => ''],
  1584.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2091','libelle' => '''description' => ''],
  1585.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2092','libelle' => '''description' => ''],
  1586.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2093','libelle' => '''description' => ''],
  1587.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2094','libelle' => '''description' => ''],
  1588.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2095','libelle' => '''description' => ''],
  1589.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2096','libelle' => '''description' => ''],
  1590.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2097','libelle' => '''description' => ''],
  1591.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2098','libelle' => '''description' => ''],
  1592.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2099','libelle' => '''description' => ''],
  1593.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2100','libelle' => '''description' => ''],
  1594.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2101','libelle' => '''description' => ''],
  1595.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2102','libelle' => '''description' => ''],
  1596.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2103','libelle' => '''description' => ''],
  1597.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2104','libelle' => '''description' => ''],
  1598.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2105','libelle' => '''description' => ''],
  1599.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2106','libelle' => '''description' => ''],
  1600.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2107','libelle' => '''description' => ''],
  1601.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2108','libelle' => '''description' => ''],
  1602.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2109','libelle' => '''description' => ''],
  1603.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2110','libelle' => '''description' => ''],
  1604.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2111','libelle' => '''description' => ''],
  1605.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2112','libelle' => '''description' => ''],
  1606.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2113','libelle' => '''description' => ''],
  1607.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2114','libelle' => '''description' => ''],
  1608.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2115','libelle' => '''description' => ''],
  1609.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2116','libelle' => '''description' => ''],
  1610.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2117','libelle' => '''description' => '']
  1611.             );
  1612.         }
  1613.         if ($page == 17
  1614.         {
  1615.             $term "Pages 17";
  1616.             $res = array
  1617.             (
  1618.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2118','libelle' => '''description' => ''],
  1619.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2119','libelle' => '''description' => ''],
  1620.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2120','libelle' => '''description' => ''],
  1621.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2121','libelle' => '''description' => ''],
  1622.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2122','libelle' => '''description' => ''],
  1623.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2123','libelle' => '''description' => ''],
  1624.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2124','libelle' => '''description' => ''],
  1625.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2125','libelle' => '''description' => ''],
  1626.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2126','libelle' => '''description' => ''],
  1627.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2127','libelle' => '''description' => ''],
  1628.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2128','libelle' => '''description' => ''],
  1629.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2129','libelle' => '''description' => ''],
  1630.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2130','libelle' => '''description' => ''],
  1631.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2131','libelle' => '''description' => ''],
  1632.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2132','libelle' => '''description' => ''],
  1633.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2133','libelle' => '''description' => ''],
  1634.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2134','libelle' => '''description' => ''],
  1635.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2135','libelle' => '''description' => ''],
  1636.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2136','libelle' => '''description' => ''],
  1637.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2137','libelle' => '''description' => ''],
  1638.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2138','libelle' => '''description' => ''],
  1639.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2139','libelle' => '''description' => ''],
  1640.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2140','libelle' => '''description' => ''],
  1641.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2141','libelle' => '''description' => ''],
  1642.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2142','libelle' => '''description' => ''],
  1643.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2143','libelle' => '''description' => ''],
  1644.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2144','libelle' => '''description' => ''],
  1645.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2145','libelle' => '''description' => ''],
  1646.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2146','libelle' => '''description' => ''],
  1647.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2147','libelle' => '''description' => ''],
  1648.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2148','libelle' => '''description' => ''],
  1649.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2149','libelle' => '''description' => ''],
  1650.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2150','libelle' => '''description' => ''],
  1651.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2151','libelle' => '''description' => ''],
  1652.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2152','libelle' => '''description' => ''],
  1653.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2153','libelle' => '''description' => ''],
  1654.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2154','libelle' => '''description' => ''],
  1655.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2155','libelle' => '''description' => ''],
  1656.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2156','libelle' => '''description' => ''],
  1657.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2157','libelle' => '''description' => ''],
  1658.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2158','libelle' => '''description' => ''],
  1659.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2159','libelle' => '''description' => ''],
  1660.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2160','libelle' => '''description' => ''],
  1661.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2161','libelle' => '''description' => ''],
  1662.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2162','libelle' => '''description' => ''],
  1663.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2163','libelle' => '''description' => ''],
  1664.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2164','libelle' => '''description' => ''],
  1665.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2165','libelle' => '''description' => ''],
  1666.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2166','libelle' => '''description' => ''],
  1667.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2167','libelle' => '''description' => ''],
  1668.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2168','libelle' => '''description' => ''],
  1669.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2169','libelle' => '''description' => ''],
  1670.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2170','libelle' => '''description' => ''],
  1671.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2171','libelle' => '''description' => ''],
  1672.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2172','libelle' => '''description' => ''],
  1673.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2173','libelle' => '''description' => ''],
  1674.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2174','libelle' => '''description' => ''],
  1675.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2175','libelle' => '''description' => ''],
  1676.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2176','libelle' => '''description' => ''],
  1677.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2177','libelle' => '''description' => ''],
  1678.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2178','libelle' => '''description' => ''],
  1679.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2179','libelle' => '''description' => ''],
  1680.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2180','libelle' => '''description' => ''],
  1681.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2181','libelle' => '''description' => ''],
  1682.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2182','libelle' => '''description' => ''],
  1683.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2183','libelle' => '''description' => '']
  1684.             );
  1685.         }
  1686.         if ($page == 18
  1687.         {
  1688.             $term "Pages 18";
  1689.             $res = array
  1690.             (
  1691.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2184','libelle' => '''description' => ''],
  1692.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2185','libelle' => '''description' => ''],
  1693.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2186','libelle' => '''description' => ''],
  1694.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2187','libelle' => '''description' => ''],
  1695.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2188','libelle' => '''description' => ''],
  1696.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2189','libelle' => '''description' => ''],
  1697.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2190','libelle' => '''description' => ''],
  1698.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2191','libelle' => '''description' => ''],
  1699.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2192','libelle' => '''description' => ''],
  1700.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2193','libelle' => '''description' => ''],
  1701.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2194','libelle' => '''description' => ''],
  1702.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2195','libelle' => '''description' => ''],
  1703.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2196','libelle' => '''description' => ''],
  1704.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2197','libelle' => '''description' => ''],
  1705.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2198','libelle' => '''description' => ''],
  1706.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2199','libelle' => '''description' => ''],
  1707.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2200','libelle' => '''description' => ''],
  1708.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2201','libelle' => '''description' => ''],
  1709.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2202','libelle' => '''description' => ''],
  1710.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2203','libelle' => '''description' => ''],
  1711.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2204','libelle' => '''description' => ''],
  1712.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2205','libelle' => '''description' => ''],
  1713.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2206','libelle' => '''description' => ''],
  1714.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2207','libelle' => '''description' => ''],
  1715.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2208','libelle' => '''description' => ''],
  1716.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2209','libelle' => '''description' => ''],
  1717.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2210','libelle' => '''description' => ''],
  1718.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2211','libelle' => '''description' => ''],
  1719.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2212','libelle' => '''description' => ''],
  1720.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2213','libelle' => '''description' => ''],
  1721.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2214','libelle' => '''description' => ''],
  1722.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '14','id' => '2215','libelle' => '''description' => ''],
  1723.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '195','libelle' => '''description' => ''],
  1724.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '299','libelle' => '''description' => ''],
  1725.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '301','libelle' => '''description' => ''],
  1726.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '302','libelle' => '''description' => ''],
  1727.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '303','libelle' => '''description' => ''],
  1728.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '363','libelle' => '''description' => ''],
  1729.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '364','libelle' => '''description' => ''],
  1730.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '367','libelle' => '''description' => ''],
  1731.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '369','libelle' => '''description' => ''],
  1732.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '371','libelle' => '''description' => ''],
  1733.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '372','libelle' => '''description' => ''],
  1734.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '374','libelle' => '''description' => ''],
  1735.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '376','libelle' => '''description' => ''],
  1736.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '379','libelle' => '''description' => ''],
  1737.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '387','libelle' => '''description' => ''],
  1738.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '388','libelle' => '''description' => ''],
  1739.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '389','libelle' => '''description' => ''],
  1740.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '390','libelle' => '''description' => ''],
  1741.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '391','libelle' => '''description' => ''],
  1742.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '392','libelle' => '''description' => ''],
  1743.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '393','libelle' => '''description' => ''],
  1744.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '394','libelle' => '''description' => ''],
  1745.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '395','libelle' => '''description' => ''],
  1746.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '396','libelle' => '''description' => ''],
  1747.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '397','libelle' => '''description' => ''],
  1748.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '398','libelle' => '''description' => ''],
  1749.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '399','libelle' => '''description' => ''],
  1750.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '400','libelle' => '''description' => ''],
  1751.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '401','libelle' => '''description' => ''],
  1752.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '402','libelle' => '''description' => ''],
  1753.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '403','libelle' => '''description' => ''],
  1754.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '404','libelle' => '''description' => ''],
  1755.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '405','libelle' => '''description' => ''],
  1756.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '406','libelle' => '''description' => '']
  1757.             );
  1758.         }
  1759.         if ($page == 19
  1760.         {
  1761.             $term "Pages 19";
  1762.             $res = array
  1763.             (
  1764.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '407','libelle' => '''description' => ''],
  1765.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '408','libelle' => '''description' => ''],
  1766.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '409','libelle' => '''description' => ''],
  1767.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '410','libelle' => '''description' => ''],
  1768.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '411','libelle' => '''description' => ''],
  1769.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '412','libelle' => '''description' => ''],
  1770.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '413','libelle' => '''description' => ''],
  1771.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '414','libelle' => '''description' => ''],
  1772.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '415','libelle' => '''description' => ''],
  1773.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '416','libelle' => '''description' => ''],
  1774.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '417','libelle' => '''description' => ''],
  1775.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '418','libelle' => '''description' => ''],
  1776.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '419','libelle' => '''description' => ''],
  1777.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '420','libelle' => '''description' => ''],
  1778.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '510','libelle' => '''description' => ''],
  1779.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '511','libelle' => '''description' => ''],
  1780.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '512','libelle' => '''description' => ''],
  1781.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '513','libelle' => '''description' => ''],
  1782.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '514','libelle' => '''description' => ''],
  1783.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '515','libelle' => '''description' => ''],
  1784.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '516','libelle' => '''description' => ''],
  1785.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '517','libelle' => '''description' => ''],
  1786.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '518','libelle' => '''description' => ''],
  1787.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '520','libelle' => '''description' => ''],
  1788.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '521','libelle' => '''description' => ''],
  1789.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '522','libelle' => '''description' => ''],
  1790.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '523','libelle' => '''description' => ''],
  1791.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '524','libelle' => '''description' => ''],
  1792.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '525','libelle' => '''description' => ''],
  1793.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '526','libelle' => '''description' => ''],
  1794.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '527','libelle' => '''description' => ''],
  1795.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '528','libelle' => '''description' => ''],
  1796.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '529','libelle' => '''description' => ''],
  1797.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '530','libelle' => '''description' => ''],
  1798.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '531','libelle' => '''description' => ''],
  1799.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '532','libelle' => '''description' => ''],
  1800.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '533','libelle' => '''description' => ''],
  1801.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '534','libelle' => '''description' => ''],
  1802.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '535','libelle' => '''description' => ''],
  1803.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '536','libelle' => '''description' => ''],
  1804.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '537','libelle' => '''description' => ''],
  1805.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '538','libelle' => '''description' => ''],
  1806.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '539','libelle' => '''description' => ''],
  1807.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '540','libelle' => '''description' => ''],
  1808.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '541','libelle' => '''description' => ''],
  1809.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '543','libelle' => '''description' => ''],
  1810.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '544','libelle' => '''description' => ''],
  1811.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '545','libelle' => '''description' => ''],
  1812.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '546','libelle' => '''description' => ''],
  1813.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '547','libelle' => '''description' => ''],
  1814.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '548','libelle' => '''description' => ''],
  1815.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '550','libelle' => '''description' => ''],
  1816.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '551','libelle' => '''description' => ''],
  1817.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '552','libelle' => '''description' => ''],
  1818.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '553','libelle' => '''description' => ''],
  1819.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '554','libelle' => '''description' => ''],
  1820.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '555','libelle' => '''description' => ''],
  1821.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '556','libelle' => '''description' => ''],
  1822.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '557','libelle' => '''description' => ''],
  1823.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '558','libelle' => '''description' => ''],
  1824.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '559','libelle' => '''description' => ''],
  1825.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '562','libelle' => '''description' => ''],
  1826.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '564','libelle' => '''description' => ''],
  1827.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '568','libelle' => '''description' => ''],
  1828.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '569','libelle' => '''description' => ''],
  1829.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '570','libelle' => '''description' => '']
  1830.             );
  1831.         }
  1832.         if ($page == 20
  1833.         {
  1834.             $term "Pages 20";
  1835.             $res = array
  1836.             (
  1837.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '571','libelle' => '''description' => ''],
  1838.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '574','libelle' => '''description' => ''],
  1839.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '575','libelle' => '''description' => ''],
  1840.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '576','libelle' => '''description' => ''],
  1841.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '577','libelle' => '''description' => ''],
  1842.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '578','libelle' => '''description' => ''],
  1843.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '579','libelle' => '''description' => ''],
  1844.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '580','libelle' => '''description' => ''],
  1845.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '582','libelle' => '''description' => ''],
  1846.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '583','libelle' => '''description' => ''],
  1847.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '584','libelle' => '''description' => ''],
  1848.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '585','libelle' => '''description' => ''],
  1849.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '586','libelle' => '''description' => ''],
  1850.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '587','libelle' => '''description' => ''],
  1851.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '588','libelle' => '''description' => ''],
  1852.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '591','libelle' => '''description' => ''],
  1853.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '592','libelle' => '''description' => ''],
  1854.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '593','libelle' => '''description' => ''],
  1855.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1274','libelle' => '''description' => ''],
  1856.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1277','libelle' => '''description' => ''],
  1857.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1278','libelle' => '''description' => ''],
  1858.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1279','libelle' => '''description' => ''],
  1859.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1855','libelle' => '''description' => ''],
  1860.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1856','libelle' => '''description' => ''],
  1861.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1857','libelle' => '''description' => ''],
  1862.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1858','libelle' => '''description' => ''],
  1863.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1859','libelle' => '''description' => ''],
  1864.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '1860','libelle' => '''description' => ''],
  1865.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2242','libelle' => '''description' => ''],
  1866.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2244','libelle' => '''description' => ''],
  1867.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2245','libelle' => '''description' => ''],
  1868.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2247','libelle' => '''description' => ''],
  1869.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2248','libelle' => '''description' => ''],
  1870.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2249','libelle' => '''description' => ''],
  1871.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2250','libelle' => '''description' => ''],
  1872.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2252','libelle' => '''description' => ''],
  1873.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2253','libelle' => '''description' => ''],
  1874.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2254','libelle' => '''description' => ''],
  1875.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2255','libelle' => '''description' => ''],
  1876.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2259','libelle' => '''description' => ''],
  1877.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2286','libelle' => '''description' => ''],
  1878.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2289','libelle' => '''description' => ''],
  1879.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2295','libelle' => '''description' => ''],
  1880.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2296','libelle' => '''description' => ''],
  1881.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2297','libelle' => '''description' => ''],
  1882.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2298','libelle' => '''description' => ''],
  1883.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2305','libelle' => '''description' => ''],
  1884.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2306','libelle' => '''description' => ''],
  1885.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2307','libelle' => '''description' => ''],
  1886.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2309','libelle' => '''description' => ''],
  1887.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2310','libelle' => '''description' => ''],
  1888.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2311','libelle' => '''description' => ''],
  1889.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2312','libelle' => '''description' => ''],
  1890.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2313','libelle' => '''description' => ''],
  1891.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2314','libelle' => '''description' => ''],
  1892.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2315','libelle' => '''description' => ''],
  1893.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '19','id' => '2355','libelle' => '''description' => ''],
  1894.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '467','libelle' => '''description' => ''],
  1895.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '468','libelle' => '''description' => ''],
  1896.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '469','libelle' => '''description' => ''],
  1897.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '470','libelle' => '''description' => ''],
  1898.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '471','libelle' => '''description' => ''],
  1899.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '472','libelle' => '''description' => ''],
  1900.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '473','libelle' => '''description' => ''],
  1901.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '474','libelle' => '''description' => ''],
  1902.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '475','libelle' => '''description' => ''],
  1903.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '1707','libelle' => '''description' => ''],
  1904.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '1708','libelle' => '''description' => ''],
  1905.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '20','id' => '1709','libelle' => '''description' => ''],
  1906.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2228','libelle' => '''description' => ''],
  1907.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2229','libelle' => '''description' => ''],
  1908.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2230','libelle' => '''description' => ''],
  1909.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2231','libelle' => '''description' => ''],
  1910.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2232','libelle' => '''description' => ''],
  1911.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2233','libelle' => '''description' => ''],
  1912.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2234','libelle' => '''description' => ''],
  1913.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2235','libelle' => '''description' => ''],
  1914.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2236','libelle' => '''description' => ''],
  1915.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2237','libelle' => '''description' => ''],
  1916.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2238','libelle' => '''description' => ''],
  1917.                 ['datatype' => 'cellule','displayascontent' => '1','categorie' => '21','id' => '2239','libelle' => '''description' => '']
  1918.             );
  1919.         }
  1920.         return $this->render('Recherche/index.html.twig', array('term' => $term'resultats' => $res));
  1921.     }
  1922. }