//******************************************************************************
//*     HER STORY Official Website ( Satomido Nikki )                          *
//*     created by Tets Morikawa ( COWBELL Corporation ), May.25 2005          *
//******************************************************************************//
// JavaScript - [function] write copyright
//
// NOTICE - edit under UTF-8!


date = new Date();
year = date.getFullYear();

if (year == 2005) {
	
	html = new Array(
	
	'<address title="著作権表示">&#169;2005 Midori Sato All rights reserved.',
	'</address>'
	
	);
	
} else {
	
	html = new Array(
	
	'<address title="著作権表示">&#169;2005-', year, 'Midori Sato All rights reserved.',
	'</address>'
	
	);
	
}

document.write(html.join(''));
document.write();