function wipProduct_Finder_EltekHttpAjaxSuccess (t, statusDiv) {

   }
   function wipProduct_Finder_EltekHttpAjaxError (t) {
     alert('Error ' + t.status + ' -- ' + t.statusText);
     //alert('you can\'t user this pseudo (ndr : test version).');
     $(imgPseudo).src = 'http://ns34.hosteur.com/~learnc/espaceemploi/ajax/images/champNonValide.gif';
   }

   function wipProduct_Finder_EltekHttpAjaxError404 (t) {
     alert('Error ' + t.status + ' -- ' + t.statusText);
     //alert('you can\'t user this pseudo (ndr : test version).');
     $(imgPseudo).src = 'http://ns34.hosteur.com/~learnc/espaceemploi/ajax/images/champNonValide.gif';
   }

   function wipProduct_Finder_EltekLoad (queryString, htmlDiv) {
     var url = '/tools/wip_v4/ajax/product_finder_eltek/show_product_finder_eltek1.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: wipProduct_Finder_EltekHttpAjaxError404,
                                                     onSuccess: wipProduct_Finder_EltekHttpAjaxSuccess,
                                                     onFailure: wipProduct_Finder_EltekHttpAjaxError
                                                    });
   }


