
function footer_01(){
	now = new Date();
	YEAR = now.getYear();
	document.write('<div id="footer">');
	document.write('<p>Copyright (C) 2001-' + YEAR + ',Yazaki Kako@Corporation. all Rights Reserved.</p>');
	document.write('</div>');
}

function footer_02(){
	now = new Date();
	YEAR = now.getYear();
	document.write('<table border="0" cellpadding="0" cellspacing="0">');
	document.write('<tbody><tr>');
	document.write('<td valign="bottom">');
	document.write('<font color="#ffffff" class="f10_white">');
	document.write('Copyright &copy; 2001 ' + 'Yazaki Kako@Corporation. all Rights Reserved.');
	document.write('</font></td>');
	document.write('<td width="10"></td><td></td></tr></tbody>');
	document.write('</table>');
}

function footer_old(){
	now = new Date();
	YEAR = now.getYear();
	document.write('<table border="0" cellpadding="0" cellspacing="0">');
	document.write('<tbody><tr>');
	document.write('<td valign="bottom">');
	document.write('<font color="#ffffff" class="f10_white">');
	document.write('Copyright (C) 2001-' + YEAR + ',Yazaki Kako@Corporation. all Rights Reserved.');
	document.write('</font></td>');
	document.write('<td width="10"></td><td></td></tr></tbody>');
	document.write('</table>');
}



