<!--
function y2k(number) { return (number < 1000) ? number + 1900 : number; }

function dispdate(){
     var now = new Date();
     var dd = now.getDate() , mt = now.getMonth() + 1 , yy = y2k(now.getYear()) , weekVal = now.getDay();

        if (weekVal==0)
       msg1="星期日";
    else if (weekVal==1)
        msg1="星期一"; 
    else if (weekVal==2)
        msg1="星期二"; 
    else if (weekVal==3)
            msg1="星期三"; 
    else if (weekVal==4)
            msg1="星期四"; 
    else if (weekVal==5)
            msg1="星期五"; 
    else if (weekVal==6)
            msg1="星期六"; 

   document.write("<span class=main align=center>公历 ");
   document.write(yy+" 年 ");
   document.write('<font face="Arial, Helvetica, sans-serif">');
   document.write(mt+"月"+dd+"日</font><br>"+msg1);
   document.write(' <script language="JavaScript" src="nl.js">');
   document.write("</"+"script></span>");
}
function high(which2) { 
 theobject=which2 
 highlighting=setInterval("highlightit(theobject)",100) 
 } 
 function low(which2){ 
 clearInterval(highlighting) 
 which2.filters.alpha.opacity=60 
 } 
 function highlightit(cur2){ 
 if (cur2.filters.alpha.opacity<100) 
 cur2.filters.alpha.opacity+=13 
 else if (window.highlighting) 
 clearInterval(highlighting) 
 }
//-->
