// JavaScript Document

/*//////////////////////////////////////////////////////////////////////////
//コピーライト年表示
//////////////////////////////////////////////////////////////////////////*/
function copyright(){
	var start = 2009;
	var now = new Date();
	var nowyear = now.getFullYear();
	
	if( start == nowyear ){
		document.write( nowyear );
	}else{
		cr_str = start + '-' + nowyear;
		document.write( cr_str );
	}
}
