function setreload()
{
	var lng = navigator.language;
	if (!lng) {
		lng = navigator.browserLanguage;
	}
	if (!lng) {
		lng = navigator.systemLanguage;
	}
/*	if (lng.indexOf('ja') >= 0) {
		location.replace('ja/index.php');
	} else if (lng.indexOf('zh-cn') >= 0) {
		location.replace('zh_cn/index.php');
	} else if ((lng.indexOf('zh-hk') >= 0) || (lng.indexOf('zh-tw') >= 0)) {
		location.replace('zh_cn/index.php');
	} else {
		location.replace('en_us/index.php');
	}
*/
	if (lng.indexOf('ja') >= 0) {
		location.href='ja/index.php';
	} else if (lng.indexOf('zh-cn') >= 0) {
		location.href='zh_cn/index.php';
	} else if ((lng.indexOf('zh-hk') >= 0) || (lng.indexOf('zh-tw') >= 0)) {
		location.href='zh_cn/index.php';
	} else {
		location.href='en_us/index.php';
	}
}
