window.addEvent("domready",function(){$("continent_select").addEvent("change",function(){var a=($("continent_select"))?$("continent_select").value:"";if(a!=""){getPays()}else{$("pays_select").dispose()}});$("menu_recherche_submit").addEvent("click",function(a){var a=new Event(a).stop();$("menu_recherche_form").submit()});$("menu_recherche_reset").addEvent("click",function(a){var a=new Event(a).stop();$("menu_recherche_form").reset();if($("pays_select")){$("pays_select").dispose()}});if($("continent_select").value!="0"){getPays()}if($("pays_select")){$("pays_select").addEvent("change",function(){getFormules()});if($("pays_selected").value!="0"){getFormules()}}$("formule_select").addEvent("change",function(){getForfaits()});init_pays=false});function getPays(){var c=($("continent_select"))?$("continent_select").value:"";var b=($("pays_selected"))?$("pays_selected").value:"";var a=new Request.JSON({url:"/misc/continent_select.php",onSuccess:function(e){if($("pays_select")){$("pays_select").empty()}else{var d=new Element("select",{id:"pays_select",name:"p"}).inject("continent_select","after")}$("pays_select").appendChild(new Element("option",{value:0}).appendText("Pays"));$("pays_select").appendChild(new Element("option",{value:0}).appendText(" "));e.each(function(f){$("pays_select").appendChild(new Element("option",{value:f.pays_id,selected:f.pays_selected}).appendText("- "+f.pays_nom))});if(!init_pays){init_pays=true;$("pays_select").addEvent("change",function(){getFormules()})}getFormules()}}).get({continent:c,pays:b})}function getFormules(){var e=($("continent_select"))?$("continent_select").value:"";var c=($("pays_select").value!="0")?$("pays_select").value:$("pays_selected").value;var b=($("formule_select").value!="0")?$("formule_select").value:$("formule_selected").value;var d=($("forfait_select").value!="0")?$("forfait_select").value:$("forfait_selected").value;var a=new Request.JSON({url:"/misc/formule_select.php",onSuccess:function(f){$("formule_select").empty();$("formule_select").appendChild(new Element("option",{value:0}).appendText("Formule"));$("formule_select").appendChild(new Element("option",{value:0}).appendText(" "));f.each(function(g){$("formule_select").appendChild(new Element("option",{value:g.formule_id,selected:g.formule_selected}).appendText("- "+g.formule_nom))});getForfaits()}}).get({continent:e,pays:c,formule:b})}function getForfaits(){var e=($("continent_select"))?$("continent_select").value:"";var c=($("pays_select").value!="0")?$("pays_select").value:$("pays_selected").value;var b=($("formule_select").value!="0")?$("formule_select").value:$("formule_selected").value;var d=($("forfait_select").value!="0")?$("forfait_select").value:$("forfait_selected").value;var a=new Request.JSON({url:"/misc/forfait_select.php",onSuccess:function(f){$("forfait_select").empty();$("forfait_select").appendChild(new Element("option",{value:0}).appendText("Prix"));$("forfait_select").appendChild(new Element("option",{value:0}).appendText(" "));f.each(function(g){$("forfait_select").appendChild(new Element("option",{value:g.forfait_id,selected:g.forfait_selected}).appendText(html_entity_decode("- "+g.forfait_nom)+"€"))})}}).get({continent:e,pays:c,formule:b,forfait:d})};
