﻿/***********************************************************************
	DATE FUNCTION
************************************************************************/

now=new Date();
yr=(now.getYear()<1000)? now.getYear()-88:now.getYear()-1988;
mo=now.getMonth()+1;
dy=now.getDate();
hr=now.getHours();
mt=now.getMinutes();
sd=now.getSeconds();
if (yr<10) { yr="0"+yr; }
if (mo<10) { mo="0"+mo; }
if (dy<10) { dy="0"+dy; }
if (hr<10) { hr="0"+hr; }
if (mt<10) { mt="0"+mt; }
if (sd<10) { sd="0"+sd; }
document.write('平成'+yr+'年'+mo+'月'+dy+'日');
