urlList = [];
var lang;

for (i=0; i<urlList.length; i++) {
	if (document.URL.indexOf(urlList[i]) != -1) {
		lang = "j";
		break;
	}
}

if (lang != "j") {
	if ((document.URL.indexOf("_j.html") != -1) || (document.URL.indexOf("lang=jp") != -1) || (document.URL.indexOf("index=1") != -1)) {
		lang = "j";
	} else {
		lang = "e";
	}
}

if (lang == "j") {
	document.write('<div id="schedule"><a href="/Exhibition/index_j.html"><img src="/Shared/Images/schedule_btn.gif" alt="Shedule" width="72" height="18" /></a></div>');
	document.write('<input type="hidden" name="index" value="1" />');
} else {
	document.write('<div id="schedule"><a href="/Exhibition/index.html"><img src="/Shared/Images/schedule_btn.gif" alt="Shedule" width="72" height="18" /></a></div>');
	document.write('<input type="hidden" name="index" value="2" />');
}