if (location.href.toString().search('_chs/') != -1) {
	atgb = 1
} else {
	atgb = 0;
}

function changeVer(lang) {
	var link = top.location.href;
	switch(lang){
		case 'e':
			link = link.replace('/game_chs/','/game/').replace('_c.htm','_e.htm');
			break;
		case 'c':
			link = link.replace('/game_chs/','/game/').replace('_e.htm','_c.htm');
			break;
		case 's':
			link = link.replace('/game/','/game_chs/').replace('_e.htm','_c.htm');
			break;
	}
	top.location.href = link;
}