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.idLienEnregistrerEtudiant=".lienEnregistrerEtudiant";this.elLienEnregistrerEtudiant=$$(this.idLienEnregistrerEtudiant);this.urlEnregistrerEtudiant="/recherche/enregistrer_recherche_etudiant/1";var me=this;this.elLienEnregistrerEtudiant.each(function(el){el.observe(EVENT_CLICK,function(evt){Event.stop(evt);me.enregistreEtudiant()})})},enregistreEtudiant:function(evt){var titre=prompt("Veuillez entrer un titre pour votre recherche :");if(titre!=null&&titre!=""){var me=this;this.divLoader.show();new Ajax.Request(this.urlEnregistrerEtudiant,{postBody:"libelle_recherche="+titre,onSuccess:function(resp){me.divLoader.hide();var reponse=resp.responseText.split("~");me.afficheConfirmation(reponse[1],reponse[0])}})}}});
