function ecritcookie(nom,texte,jours)       // les beaux paramètres
{
  var datecourante=new Date();              // lit la date
  var expires=new Date();
  expires.setTime(datecourante.getTime()+1000*60*60*24*jours);
  document.cookie=nom+'='+escape(texte)+'; expires='+expires.toGMTString()+'; path=/';
}


function donnecookie(nom)
{
  var recherche=nom+'=';                    // pour recherche nom dans la liste
  if (document.cookie.length>0)             // si il existe des cookies
  {
    position=document.cookie.indexOf(recherche);   // donne la position du nom
    if (position!=-1)                              // si une position existe
      {
        position=position+recherche.length;        // on passe après nom=
        fin=document.cookie.indexOf(';',position); // on cherche la fin (";")
        if (fin==-1)                               // si le ";" n'existe pas
        {
          fin=document.cookie.length;       // alors le cookie va jusqu'au bout
        }
        return unescape(document.cookie.substring(position,fin));// donne texte
      }
      else {return '';}                     // retourne du 'vide'
  }
  else {return '';}                         // retourne du 'vide'
}

function recordlangue(langue)
{
ecritcookie('lg',langue,1);
}

function traduitenanglais()
{
ecritcookie('lg','uk',60);
souschaine="http://www.ldnegoce.com/fr/";
newchaine="http://www.ldnegoce.com/uk/";
chaine=document.location.href;
newchaine+=chaine.substring(souschaine.length,chaine.length);
document.location.href=newchaine;
}

function traduitenfrancais()
{
ecritcookie('lg','fr',60);
souschaine="http://www.ldnegoce.com/uk/";
newchaine="http://www.ldnegoce.com/fr/";
chaine=document.location.href;
newchaine+=chaine.substring(souschaine.length,chaine.length);
document.location.href=newchaine;
}