 var now = new Date();
       
        var month = now.getMonth() + 1;     //ÔÂ
        var day = now.getDate();            //ÈÕ
       
        var hh = now.getHours();            //Ê±
        var mm = now.getMinutes();          //·Ö
       
       
        if(month < 10) month = "0"+month;
       
       
        if(day < 10) day = "0"+day;
           
       
        if(hh < 10) hh = "0"+hh;
           

        if (mm < 10) mm = '0'+mm; 



document.write("<table width='128' border='0' cellspacing='0' cellpadding='0' height='47' align='center'>");
document.write("<tr><td style='background:url(kexin/kexin.png) no-repeat; width:128px; height:47px;'>");
document.write("<a href='kexin/kexin.htm' target='_blank' style='text-decoration:none;'><div id='showtime'style='text-align:right;padding:30px 4px 0 0;font-size:9px;color:#FFffff;font-family:Î¢ÈíÑÅºÚ;'><script language='javascript'>");
document.write("showtime.innerHTML=now.getYear().toString().substring(2,4)+\".\"+month+\".\"+day+\" \"+hh+\":\"+mm;");
document.write("</script></div></a></td>");
document.write("</tr></table>");
