function wipAjaxHttpAjaxSuccess (t, statusDiv) {

   }
   function wipAjaxHttpAjaxError (t) {
     alert('Error ' + t.status + ' -- ' + t.statusText);
     //alert('you can\'t user this pseudo (ndr : test version).');
     //$(imgPseudo).src = '/champNonValide.gif';
   }

   function wipAjaxHttpAjaxError404 (t) {
     alert('Error ' + t.status + ' -- ' + t.statusText);
     //alert('you can\'t user this pseudo (ndr : test version).');
     //$(imgPseudo).src = '/champNonValide.gif';
   }


  function wipAjax (htmlDiv, queryString) {
     var myAction='wipAjaxUpdate("' + htmlDiv + '", "' + queryString + '");';
     id = setTimeout(myAction,500);
   }


   function wipAjaxUpdate (htmlDiv, queryString) {
     var status = document.getElementById(htmlDiv + 'status');
     if (status) {
       status.style.display = 'inline';
     }

     new Ajax.Updater(htmlDiv, '/wip4/popup.epl?' + queryString, {
							       onComplete:function(){
                                                                           new Effect.Appear(htmlDiv, {
												     duration:0.5
                                                                                                      }
                                                                                             );
									 },
                                                     asynchronous: true,
                                                     evalScripts: true,
                                                     method: 'get',
                                                     on404: wipAjaxHttpAjaxError404,
                                                     onSuccess: wipAjaxHttpAjaxSuccess,
                                                     onFailure: wipAjaxHttpAjaxError
                                                    });
   }




