function writeFooter(lang) {
	switch (lang) {
		case 1:
			document.write('	<div id="footer">');
			document.write('		<div id="f_nav">');
			document.write('		&nbsp;');
			document.write('		</div>');

			document.write('		<div id="f_footer">');
			document.write('			<table width="900" border="0" cellspacing="0" cellpadding="0">');
			document.write('				<tr>');
			document.write('					<td width="200" rowspan="2" align="left" valign="top">');
			document.write('						<img src="/general/img/footer_01.jpg" alt="Touchstone" width="200" height="140" />');
			document.write('					</td>');
			document.write('					<td width="700" height="100" align="right" valign="bottom">');
			document.write('						<span id="navi_f">');
			document.write('						｜<a href="/general/legal_info/privacy.html">個人情報保護宣言</a>');
			document.write('						｜<a href="/general/legal_info/purpose.html">個人情報の利用目的</a>');
			document.write('						｜<a href="/general/legal_info/policy.html">最良執行方針</a>');
			document.write('						｜<a href="/general/legal_info/solicitation.html">勧誘方針</a>');
			document.write('						｜<a href="/general/legal_info/safe_custody.html">お預かり資産管理制度</a>');
			document.write('						｜');
			document.write('						</span><br />');
			document.write('						<span id="navi_f">');
			document.write('						｜<a href="/general/legal_info/declaration.html"> 反社会的勢力排除宣言</a>');
			document.write('						｜ <a href="/general/legal_info/business_and_service.html">利益相反管理方針</a>');
			document.write('						｜<a href="/general/legal_info/terms_of_use.html">サイトのご利用について</a>');
			document.write('						｜');
			document.write('						</span>');
			document.write('					</td>');
			document.write('				</tr>');
			document.write('				<tr>');
			document.write('					<td width="700" height="40" align="right" valign="middle">');
			document.write('						<p class="footer">&copy; 2010 ALL RIGHTS RESERVED, TOUCHSTONE CAPITAL SECURITIES CO., LTD.</p>');
			document.write('					</td>');
			document.write('				</tr>');
			document.write('			</table>');
			document.write('		</div>');
			document.write('	</div>');

			break;
		case 2:
			document.write('<div id="footer">');
			document.write('	<div id="f_nav">');
			document.write('	&nbsp;');
			document.write('	</div>');
			document.write('	<div id="f_footer">');
			document.write('		<table width="900" border="0" cellspacing="0" cellpadding="0">');
			document.write('			<tr>');
			document.write('				<td width="200" rowspan="2" align="left" valign="top">');
			document.write('					<img src="../img/footer_01.jpg" alt="Touchstone" width="200" height="140" />');
			document.write('				</td>');
			document.write('				<td width="700" height="100" align="right" valign="bottom">');
			document.write('					<span id="navi_f">');
			document.write('					| <a href="../legal_info/privacy.html">Privacy Policy</a> ');
			document.write('					| <a href="../legal_info/solicitation.html">Solicitation Policy</a> ');
			document.write('					| <a href="../legal_info/terms_of_use.html">Terms of Use</a> ');
			document.write('					| <a href="../legal_info/policy.html">Best Execution Policy</a> |');
			document.write('					</span>');
			document.write('				</td>');
			document.write('			</tr>');
			document.write('			<tr>');
			document.write('				<td width="700" height="40" align="right" valign="middle">');
			document.write('				<p class="footer">&copy; 2010 ALL RIGHTS RESERVED, TOUCHSTONE CAPITAL SECURITIES CO., LTD.</p></td>');
			document.write('			</tr>');
			document.write('		</table>');
			document.write('	</div>');
			document.write('</div>');
			break;

	}
}

