// JavaScript Document


function day(){
	
now = new Date();
year = now.getYear();
month = now.getMonth() + 1;
day = now.getDate();
if ( year < 2000 ) { year += 1900; }
if ( month < 10 ) { month = "0" + month; }
if ( day < 10 ) { day= "0" + day; }
document.write(year,".",month,".",day);
}
