var serveur=window.location.hostname;
if (serveur == "localhost")
	serveur="localhost:8080";

   if (navigator.browserLanguage == 'fr')
	  window.location.href= "http://"+serveur+"/index-fr.html";
   else if (navigator.browserLanguage == 'de')
	  window.location.href= "http://"+serveur+"/index-ge.html";
   else if (navigator.browserLanguage == 'es')
	  window.location.href= "http://"+serveur+"/index-sp.html";
   else
	  window.location.href= "http://"+serveur+"/index-en.html";
