//===== COWBELL Corporation official web site ==============   Ａ_Ａ =====
//      C O W B E L L   c a f f e                            γ▼  フ
//      [!]Unauthorized copying of all contents prohibited.   ゜ ゜  ヽ
//================ Copyright 2001-2004 COWBELL Corporation = (‥ )ノ =====
// any problems?  ok, please contact us... mailto:info@cowbell.jp
//
// JavaScript - [function] write copyright


date = new Date();
year = date.getFullYear();

if (year == 2001) {
	
	html = new Array(
	
	'<ul id="copyright">',
	'<li class="privacy_policy" title="プライバシーポリシー"><a href="http://www.cowbell.jp/privacy/index.html">プライバシーポリシー</a></li>',
	'<li class="copyright" title="著作権表示">Copyright 2001 COWBELL Corporation</li>',
	'</ul>'
	
	);
	
} else {
	
	html = new Array(
	
	'<ul id="copyright">',
	'<li class="privacy_policy" title="プライバシーポリシー"><a href="http://www.cowbell.jp/privacy/index.html">プライバシーポリシー</a></li>',
	'<li class="copyright" title="著作権表示">Copyright 2001-', year, ' COWBELL Corporation</li>',
	'</ul>'
	
	);
	
}

document.write(html.join(''));
document.write();