function clicValideCommande()
{
   return true;
}

function majCoordClient()
{

}

function GA_this_order(id)
{
   $.ajax({type: "GET",url: "ajaxbatch.php?id_commande="+id,success: function(xml)
   {
      var trans   =  $("transaction",xml);
      var items   =  $("item",xml);


      pageTracker._addTrans('"'+$(trans).attr('orderid')+'"',
                            '"'+$(trans).attr('shopname')+'"',
                            '"'+$(trans).attr('total')+'"',
                            '"'+$(trans).attr('tax')+'"',
                            '"'+$(trans).attr('shipping')+'"',
                            '"'+$(trans).attr('city')+'"',
                            '"'+$(trans).attr('state')+'"',
                            '"'+$(trans).attr('country')+'"');

      $p_item  =  "<item orderid=\"%s\" reference=\"%s\" productname=\"%s\" cat=\"%s\" PU=\"%s\" quantity=\"%s\"/>";

      $(items).each=function()
      {
         pageTracker._addItem('"'+$(trans).attr('orderid')+'"',
                              '"'+$(this).attr('reference')+'"',
                              '"'+$(this).attr('productname')+'"',
                              '"'+$(this).attr('cat')+'"',
                              '"'+$(this).attr('PU')+'"',
                              '"'+$(this).attr('quantity')+'"');
      }
      pageTracker._trackTrans();

      //accusé de réception
      $.ajax({type: "GET",url: "ajaxbatch.php?action=receipt&id_commande="+id});
   }
          })//fin $.ajx
}