var dsListeMeilleurDuWeb=new Spry.Data.JSONDataSet("../JSON/rsListeMeilleurDuWeb.php",{method:"POST",postData:"action=showData",subPaths:"results"});function updatePageMeilleurWeb(page){var params=Spry.Utils.getURLParamsAsObject(dsListeMeilleurDuWeb.getURL());var rechercheUrl=params.recherche;if(rechercheUrl!=undefined){dsListeMeilleurDuWeb.setURL("../JSON/rsListeMeilleurDuWeb.php?recherche="+rechercheUrl,{method:"POST",postData:"action=showData&page="+page});}else{dsListeMeilleurDuWeb.setURL("../JSON/rsListeMeilleurDuWeb.php",{method:"POST",postData:"action=showData&page="+page});}  dsListeMeilleurDuWeb.loadData();}function FilterData(){var tf=document.getElementById("filterTF");if(!tf.value){dsListeMeilleurDuWeb.setURL("../JSON/rsListeMeilleurDuWeb.php",{method:"POST",postData:"action=showData"});dsListeMeilleurDuWeb.loadData();dsSitesRecommandes.setURL("../JSON/rsListeSitesRecommandes.php",{method:"POST",postData:"action=showData"});	    dsSitesRecommandes.loadData();return;}var regExpStr=tf.value;var regExp=new RegExp(regExpStr,"i");dsListeMeilleurDuWeb.setURL("../JSON/rsListeMeilleurDuWeb.php?recherche="+regExpStr,{method:"POST",postData:"action=showData"});dsListeMeilleurDuWeb.loadData();dsSitesRecommandes.setURL("../JSON/rsListeSitesRecommandes.php?recherche="+regExpStr,{method:"POST",postData:"action=showData"});dsSitesRecommandes.loadData();}function StartFilterTimer(){if(StartFilterTimer.timerID)clearTimeout(StartFilterTimer.timerID);StartFilterTimer.timerID=setTimeout(function(){StartFilterTimer.timerID=null;FilterData();},100);}