1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<html>
<head>
<script type="text/javascript">
var userLangs = navigator.languages || [navigator.language || navigator.userLanguage];
var userLang = userLangs[0].substring(0, 2);
if (userLang == "ru")
{
window.location.replace("doc/ru/index.html");
}
else if (userLang == "zh")
{
window.location.replace("doc/zh/index.html");
}
else
{
window.location.replace("doc/en/index.html");
}
</script>
<noscript>
<meta http-equiv="refresh" content="0; url='doc/en/index.html'" />
</noscript>
</head>
</html>
|