Redirecting Foreign Traffic
At some point or another we are no doubt going to have the need to redirect some or all of our surfers based on the language they speak, this snippet of JavaScript when placed on your page will enable you to do just that without the need for .php or other more complex scripting.
Here is the coding that you need to place between your and tags:
To add additional language redirects to this JavaScript all you need to do is duplicate the:
else if (language.indexOf('zh') > -1) document.location.href = 'chinese.shtml';
Section of the coding changing the ('zh') language code to that of the language you wish to redirect.
Article written by Lee.
http://www.europeanwebmasters.com