window.onload=function(){
	var e = new Date();
	var n = new Date(document.lastModified);
	var y = n.getYear();
	var m = n.getMonth()+1;
	if(m<10){m = "0"+m ;};
	var d = n.getDate();
	if(d<10){d = "0"+d ;};
	var f = e.getYear();
	if(y<1900){y=y+1900;};
	if(f<1900){f=f+1900;};
	var text1="Last Modified : "+y+"/"+m+"/"+d+".";
	var text2="&copy;2007-"+f+" Koimaru All rights reserved.";
	$('modified').innerHTML = text1 ;
	$('copyright').innerHTML= text2 ;
}


