var EVENT_CLICK="click";var EVENT_LOAD="load";Event.observe(window,EVENT_LOAD,function(){new EnregistrementRecherche()});var EnregistrementRecherche=Class.create();EnregistrementRecherche.prototype=Object.extend(new GlobalUtils(),{initialize:function(){this._initialize();this.classLienEnregistrerAnnonce=".lienEnregistrerAnnonce";this.urlEnregistrerAnnonce="/recherche/enregistrer_recherche_annonce/1";var me=this;$$(this.classLienEnregistrerAnnonce).each(function(el){el.observe(EVENT_CLICK,function(evt){Event.stop(evt);me.enregistreAnnonce()})})},enregistreAnnonce:function(evt){var titreAnnonce=prompt("Veuillez entrer un titre pour votre recherche :");if(titreAnnonce!=null&&titreAnnonce!=""){var me=this;this.divLoader.show();new Ajax.Request(this.urlEnregistrerAnnonce,{postBody:"libelle_recherche="+titreAnnonce,onSuccess:function(resp){me.divLoader.hide();var reponse=resp.responseText.split("~");me.afficheConfirmation(reponse[1],reponse[0])}})}}});
