function  Year_Month(){  
        var  now  =  new  Date();  
        var  yy  =  now.getFullYear(); 
        var date= now.getDate();
        var  mm  =  now.getMonth();  
	var  mmm=new  Array();
	mmm[0]="1";
	mmm[1]="2 ";
	mmm[2]="3";
	mmm[3]="4";
	mmm[4]="5";
	mmm[5]="6";
	mmm[6]="7";
	mmm[7]="8";
	mmm[8]="9";
	mmm[9]="10";
	mmm[10]="11";
	mmm[11]="12";
	mm=mmm[mm];
	var  ww=now.getDay();
	if  (ww==0)  ww="<font  color=red>星期日</font>";
	if  (ww==1)  ww="星期一";
	if  (ww==2)  ww="<font color=#0A8EF4>星期二</font>";
	if  (ww==3)  ww="<font color=#AF0AF4>星期三</font>";
	if  (ww==4)  ww="<font color=#000>星期四</font>";
	if  (ww==5)  ww="<font color=#FC7A06>星期五</font>";
	if  (ww==6)  ww="<font  color=green>星期六</font>";
	ww=ww;

        return(yy+"年"+mm+"月"+date+"日"+"  "+ww);  }
