// JavaScript Document today = new Date(); if (today.getYear() <2000) { document.write(today.getYear()+1900); } else { document.write(today.getYear()); } document.write('?1?); document.write(today.getMonth()+1); document.write('???); document.write(today.getDate()); document.write('??'); if (today.getDay()==0) { document.write('????????); } else if (today.getDay()==1) { document.write('?????????); } else if (today.getDay()==2) { document.write('???????o?); } else if (today.getDay()==3) { document.write('?????????); } else if (today.getDay()==4) { document.write('?????????); } else if (today.getDay()==5) { document.write('???????o?); } else if (today.getDay()==6) { document.write('????????); }