// JavaScript Document
<!--
	function enVersion(){
		var thisURL = String(window.location);
		thisURL = thisURL.replace("/jp/","/en/");
		top.location.href = thisURL;
	}
	
	function jpVersion(){
		var thisURL = String(window.location);
		thisURL = thisURL.replace("/en/","/jp/");
		top.location.href = thisURL;
	}
	
document.jsSwapLang_Loaded = true;

//-->
