function wipTipHttpAjaxSuccess (t, statusDiv) {

   }
   function wipTipHttpAjaxError (t) {
     alert('Error ' + t.status + ' -- ' + t.statusText);
     //alert('you can\'t user this pseudo (ndr : test version).');
     //$(imgPseudo).src = '/champNonValide.gif';
   }

   function wipTipHttpAjaxError404 (t) {
     alert('Error ' + t.status + ' -- ' + t.statusText);
     //alert('you can\'t user this pseudo (ndr : test version).');
     //$(imgPseudo).src = '/champNonValide.gif';
   }

   function wipTipLoad (queryString, htmlDiv) {
     var url = '/tools/wip_v4/ajax/tip/show.epl';
     var status = document.getElementById(htmlDiv + 'status');
     if (status) {
       status.style.display = 'inline';
     }
     new Ajax.Updater(htmlDiv, url + '?' + queryString, {
                                                     onComplete:function(){
                                                                           new Effect.Highlight(htmlDiv, {
                                                                                                          duration: 0.5
                                                                                                         }
                                                                                               );
                                                                          },
                                                     asynchronous: true,
                                                     evalScripts: true,
                                                     method: 'get',
                                                     on404: wipTipHttpAjaxError404,
                                                     onSuccess: wipTipHttpAjaxSuccess,
                                                     onFailure: wipTipHttpAjaxError
                                                    });
   }

   function wipTipLoadMini (queryString, htmlDiv) {
     var url = '/tools/wip_v4/ajax/tip/show_mini.epl';
     var status = document.getElementById(htmlDiv + 'status');
     if (status) {
       status.style.display = 'inline';
     }
     new Ajax.Updater(htmlDiv, url + '?' + queryString, {
                                                     onComplete:function(){
                                                                           new Effect.Highlight(htmlDiv, {
                                                                                                          duration: 0.5
                                                                                                         }
                                                                                               );
                                                                          },
                                                     asynchronous: true,
                                                     evalScripts: true,
                                                     method: 'get',
                                                     on404: wipTipHttpAjaxError404,
                                                     onSuccess: wipTipHttpAjaxSuccess,
                                                     onFailure: wipTipHttpAjaxError
                                                    });
   }


