function menu_click(sParams) { params=sParams.split(","); menuid=params[0]; artid=params[1]; switch(artid) { default: panelH_close(); //Affichage du corps sURL="dynamic/article_show.php"; sParam="artid="+artid; sFunction="systeme_find"; sElement="sub_corps"; ajax_load("POST",sURL,sParam,sFunction,sElement); //Affichage des blocks sURL="dynamic/news_blocks.php"; sParam="menuid="+menuid; sFunction=null; sElement="sub_navi"; ajax_load("POST",sURL,sParam,sFunction,sElement); document.getElementById("global_corps").scrollTop=0; break; } } function article_load(id) { //Affichage du corps sURL="dynamic/article_show.php"; sParam="artid="+id; sFunction="systeme_find"; sElement="sub_corps"; ajax_load("POST",sURL,sParam,sFunction,sElement); document.getElementById("global_corps").scrollTop=0; } function systeme_find(JSONReponse) { var Reponse = eval('(' + JSONReponse + ')'); sURL="dynamic/article_systeme.php"; sParam=Reponse["param"]; sFunction="systeme_run"; sElement=null; ajax_load("POST",sURL,sParam,sFunction,sElement); } function systeme_run(JSONReponse) { //Lancement des systèmes coté JS if (JSONReponse.indexOf("{")!=-1) { var Reponse = eval('(' + JSONReponse + ')'); var systeme = trim(Reponse["reponse"]); } else { var systeme = trim(JSONReponse); } switch(systeme) { case "03_Accueil"://Système de la page d'accueil appelé //Chargement du bandeau flash if (document.getElementById("flash_topvente")!=null && document.getElementById("flash_topvente")!=undefined) { var swfTop = new SWFObject("../topvente.swf", "topvente", "486", "167", "8", "#FFFFFF"); swfTop.addParam("wmode", "transparent"); //swfTop.addVariable("compte_connecte", "1"); swfTop.write("flash_topvente"); } break; case "04_carte"://Système d'afichage de carte //Chargement du bandeau flash var swfMap = new SWFObject("../map.swf", "map", "400", "400", "8", "#FFFFFF"); swfMap.addParam("wmode", "transparent"); swfMap.write("flash_map"); break; case "02_Contact"://Système d'afichage de carte break; default: break; } }