function getBrowserLANG(){
  if(document.all)                  
    return navigator.userLanguage;      //IE
  else if(document.layers) 
    return navigator.language;             //N4
  else if(document.getElementById) 
    return navigator.language.substr(0,2); //N6,Moz
}

lng = getBrowserLANG();

if( lng == 'ja' ){
	window.open('jp/index.html', '_self');
}


if( lng == 'zh-cn' ){
	window.open('cn_s/index.html', '_self');
}

if( lng == 'zh-tw' ){
	window.open('cn_t/index.html', '_self');
}

if( lng == 'zh-hk' ){
	window.open('cn_t/index.html', '_self');
}

if( lng == 'ko' ){
	window.open('kr/index.html', '_self');
}