function lienslg() 
{ 
URL=self.location.href; 
fin=URL.length; 
slash=URL.indexOf("/",31);
domaine=URL.substring(0,slash+1);
if (URL.substr(slash+3,1)=="/")
{codefr="fr"+URL.substr(slash+3,fin);
codeen="en"+URL.substr(slash+3,fin);
codede="de"+URL.substr(slash+3,fin);
}
else
{codefr="index.php";
codeen="index-en.php";
codede="index-de.php";
}
codefr=domaine+codefr;
codeen=domaine+codeen;
codede=domaine+codede;
code='<a href="'+codefr;
code=code+'" title="français">fr</a></li>';
code=code+'<li class="lang"><a href="'+codede;
code=code+'" title="deutsch">de</a></li>';
code=code+'<li class="lang"><a href="'+codeen;
code=code+'" title="english">en</a>';
return code; 
}
