<!--时间代码开始
function Year_Month(){ 
var now = new Date(); 
var yy = now.getYear(); 
var mm = now.getMonth()+1; 
var cl = '<font color="#FFFFFF">'; 
if (now.getDay() == 0) cl = '<font color="#FFFFFF">'; 
if (now.getDay() == 6) cl = '<font color="#FFFFFF">'; 
return(cl +  yy + '年' + mm + '月</font>'); 
} 

function Date_of_Today(){ 
var now = new Date(); 
var cl = '<font color="#FFFFFF">'; 
if (now.getDay() == 0) cl = '<font color="#FFFFFF">'; 
if (now.getDay() == 6) cl = '<font color="#FFFFFF">'; 
return(cl +  now.getDate() + '</font>'); 
} 

function Day_of_Today(){ 
var day = new Array(); 
day[0] = "星期日"; 
day[1] = "星期一"; 
day[2] = "星期二"; 
day[3] = "星期三"; 
day[4] = "星期四"; 
day[5] = "星期五"; 
day[6] = "星期六"; 
var now = new Date(); 
var cl = '<font color="#FFFFFF">'; 
if (now.getDay() == 0) cl = '<font color="#FFFFFF">'; 
if (now.getDay() == 6) cl = '<font color="#FFFFFF">'; 
return(cl +  day[now.getDay()] + '</font>'); 
} 



function refreshCalendarClock(){ 
document.all.calendarClock1.innerHTML = Year_Month(); 
document.all.calendarClock2.innerHTML = Date_of_Today(); 
document.all.calendarClock3.innerHTML = Day_of_Today(); 

}
var webUrl = webUrl;

//时间代码结束-->


//开始显示-->
document.writeln("<table width=\"128\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("        <tr> ");
document.writeln("          <td width=\"10\"></td>");
document.writeln("          <td width=\"108\">");
document.writeln("            <table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" height=\"58\" bgcolor=\"#001667\">");
document.writeln("              <tr>");
document.writeln("                <td align=\"center\"><font id=\"calendarClock1\" style=\"font-family:Arial;font-size:9pt;line-height:100%\"></font><br>");
document.writeln("                  <font id=\"calendarClock2\" style=\"font-family:Verdana;font-size:14pt;line-height:100%;font-weight: bold\"></font><br>");
document.writeln("	<font id=\"calendarClock3\" style=\"font-family:Arial;font-size:9pt;line-height:100%\"></font><br></td>");
document.writeln("              </tr>");
document.writeln("            </table>");
document.writeln("          </td>");
document.writeln("          <td width=\"10\"></td>");
document.writeln("        </tr>");
document.writeln("      </table>");
//结束显示-->
refreshCalendarClock();