<!--
if (navigator.userLanguage)
  theAgent = navigator.userLanguage;
else 
  theAgent = navigator.language;
 
if (theAgent.indexOf('en') != -1) {location.href = "/en";}
else if (theAgent.indexOf('fr') != -1) {location.href = "/en";}
else if (theAgent.indexOf('es') != -1) {location.href = "/en";}
else if (theAgent.indexOf('de') != -1) {location.href = "/en";}
else if (theAgent.indexOf('it') != -1) {location.href = "/it";}
else {location.href = "/en";}
//-->
