/* étant donné que l'on préinclut dans cette nouvelle version prototype il n'est pas la peine de redéclarer
cette méthode ;-)  */
/*var Class = {
  create: function() {
    return function() {
      this.initialize.apply(this, arguments);
    }
  }
}*/

ajaxStore = Class.create(); /* création d'une classe pour la variable LiveGridSimulation */

/* 
	* 01/09/2006 19:07pm
	* js/v.0.1.ajaxStore.js
	* 
*/
ajaxStore.prototype = {

		initialize: function(  ) {
		  this.setUrls();
		  this.formRechercheTelephone = "fOT";
		},
		
		debug: function ( ) {
		  //alert('id el : '+this.idEl+' et nb lignes : '+this.nbLignes+' et nbLignesAff : '+this.nbLignesAff+' et id dernière ligne : '+this.idDerniereLigne+' et voilà ;-) ');
		},
		
		setUrls: function() {
		  this.urls = {
		     'rechercherTelephone'   : 'http://www.nicoweb.fr/ajaxStore/ajax/rechercherTelephone.php',   // url ajax recherche de téléphones
		  };
		},
		
		rechercherTelephone : function () { 
				 
			   new Ajax.Updater('cadreListeTelephone',this.urls['rechercherTelephone'],{ method:'post' , postBody : Form.serialize(this.formRechercheTelephone), onComplete: this.sRechercherTelephone, onFailure: this.eRechercherTelephone});
		},
		
		sRechercherTelephone : function () { },
		eRechercherTelephone : function () { }
		

}