//******************************************************************************/
//*     "U R B A N   C O R P O R A T I O N   I N C ."   W E B S I T E          */
//*     JavaScript - [function] write copyright                                */
//*     directed by Shin Tanaka / created by Tets Morikawa - Jan.20 2007       */
//******************************************************************************/


date = new Date();
year = date.getFullYear();

if (year <= 2007) {
	
	html = new Array(
	
	'<address>&#169;2007 Urban Corporation Inc. All rights reserved.</address>'
	
	);
	
} else {
	
	html = new Array(
	
	'<address>&#169;2007-', year, ' Urban Corporation Inc. All rights reserved.</address>'
	
	);
	
}

document.write(html.join(''));
document.write();