 function showdate(){
 var today=new Date();
 date=today.getDate();
 month=today.getMonth();
 month=month+1;
 if(month<=9) month="0"+month;
 year=today.getYear();
 document.write(year,".",month,".",date,".");
 }