function goChS_URL(verID){
	var localPath = window.location.href;
	var targetFilePath;
	var list = localPath.split("/");
	var targetFile = list[list.length-1];
	var tempName = targetFile.substr(0,5);
	if(verID == "ChS"){
		targetFilePath = "../chs/"+targetFile;
	} else if (verID == "ChT") {
		targetFilePath = "../cht/"+targetFile;
	} else if(verID == "En") {
		targetFilePath = "../en/"+targetFile;
	}
	location = targetFilePath;
}