<!--
var now = new Date();
var SY = now.getFullYear(); 
var SM = now.getMonth();
var SD = now.getDate();

function YYMMDD(){ 
    var cl = '<font color="" style="font-size:9pt;">'; 
    if (now.getDay() == 0) cl = '<font color="" style="">'; 
    if (now.getDay() == 6) cl = '<font color="" style="">';
    return(cl+SY+'年'+'&nbsp;'+'|'+'&nbsp;'+(SM+1)+'月'+SD+'日</font>'); 
 }
function weekday(){ 
    var day = new Array("<font color='red'>星期日</font>","星期一","星期二","星期三","星期四","星期五","星期六");
    if (now.getDay() == 0) cl = '<font color="" style="">';
    if (now.getDay() == 6) cl = '<font color="" style=""">'; 
    return(day[now.getDay()]); 
 }
 function setCalendar(){
 
    document.write(YYMMDD()+'&nbsp;'+'|'+'&nbsp;'+weekday() + "&nbsp;");
 }
 setCalendar();
//-->
