<!-- JavaScript
//
function dispMenu()
{
	document.write('<table cellpadding="2" cellspacing="0" width="100%">');
	document.write('	<tr valign="bottom" align="left">');
	document.write('		<td rowspan="2" width="200">');
	document.write('			<img src="booby3.gif">');
	document.write('		</td>');
	document.write('		<td colspan="7">');
	document.write('			<br>');
	document.write('		</td>');
	document.write('	</tr>');
	document.write('	<tr valign="bottom" align="left">');
	document.write('		<td bgcolor="black" align="center">');
	document.write('			<font color="white"><b>MENU</b></font>');
	document.write('		</td>');
	document.write('		<td width="10">');
	document.write('			<br>');
	document.write('		</td>');
	document.write('		<td nowrap>');
	document.write('			■ <a href=".">TOP</a>');
	document.write('		</td>');
	document.write('		<td nowrap>');
	document.write('			■ <a href="company.html">会社案内</a>');
	document.write('		</td>');
	document.write('		<td nowrap>');
	document.write('			■ <a href="works.html">業務案内</a>');
	document.write('		</td>');
	document.write('		<td nowrap>');
	document.write('			■ <a href="example.html">製品例</a>');
	document.write('		</td>');
	document.write('		<td width="25%">');
	document.write('			<br>');
	document.write('		</td>');
	document.write('	</tr>');
	document.write('	<tr>');
	document.write('		<td colspan="8" bgcolor="black"><img src="clear.gif" width="1" height="0"></td>');
	document.write('	</tr>');
	document.write('</table>');
	document.write('<br>');
}

function dispFooter()
{
	document.write('<br>');
	document.write('<table cellpadding="2" cellspacing="0" width="100%">');
	document.write('	<tr valign="bottom" align="right" bgcolor="black">');
	document.write('		<td>');
	document.write('			<font color="white">Copyright&copy; 2000,<a href="mailto:yojiro@boobytrap.ne.jp" class="rev">Booby Trap Systems</a></font>');
	document.write('		</td>');
	document.write('	</tr>');
	document.write('</table>');
}
//-->

