solo per puntualizzare...puoi ottimizzare il codice così:

codice:
<script language="JavaScript" type="text/javascript">

if (navigator.userLanguage) {theAgent = navigator.userLanguage;}
else {theAgent = navigator.language;}
if (theAgent.indexOf('it') != -1) {location.href = "http://www.brueckenbauer.it/it/index.html";}
else if (theAgent.indexOf('de') != -1) {location.href = "http://www.brueckenbauer.it/de/index.html";}
else {location.href = "http://www.brueckenbauer.it/en/index.html";}

</script>