var bsYear; 
var bsDate; 
var bsWeek; 
var D=new Date(); 
var yy=D.getYear(); 
var mm=D.getMonth()+1; 
var dd=D.getDate(); 
var ww=D.getDay(); 
if (ww==0) ww="<font color=#ff0000>星期日</font>"; 
if (ww==1) ww="<font color=#000000>星期一</font>"; 
if (ww==2) ww="<font color=#000000>星期二</font>"; 
if (ww==3) ww="<font color=#000000>星期三</font>"; 
if (ww==4) ww="<font color=#000000>星期四</font>"; 
if (ww==5) ww="<font color=#000000>星期五</font>"; 
if (ww==6) ww="<font color=#ff0000>星期六</font>";
ww=ww; 


bsWeek=ww; 
bsDate=yy+"年"+mm+"月"+dd+"日"; 

CAL();
function CAL(){ 
	document.write("<font color=black>"+bsDate+"&nbsp"+bsWeek+"</font>&nbsp;"); 
} 


