
youbi = new Array("sun","mon","tue","wed","thu","fri","sat");
myDate = new Date();
theDate = myDate.getDate(); theDay = youbi[myDate.getDay()];
theFyear = myDate.getFullYear();
theYear = myDate.getYear(); theMonth = myDate.getMonth() + 1;

document.write( theFyear + " / " + theMonth + " / " + theDate + " (" + theDay +  " .)" );

/***
dateObj = new Date();
h = dateObj.getHours();
document.write(h+"Žž");
*/
