//alert(navigator.language);
if (navigator.appName == 'Netscape')
var language = navigator.language;
else
var language = navigator.browserLanguage;
if (language.indexOf('en') > -1) document.location.href = 'EN/index.html';
else if (language.indexOf('ja') > -1) document.location.href = 'JP/index.html';
else
document.location.href = 'JP/index.html';
