  //显示时间
  function showtime(){
	var today = new Date();                                                                   
	var year = today.getYear();                                                                   
	var date = today.getDate();                                                                   
	var todays_date = new Date;                                                                   
	                                                                  
	months = new Array("1","2","3","4","5","6","7","8","9","10","11","12");   
	days1=new Array("天","一","二","三","四","五","六");  
	document.writeln( '<font  color="#ff3300">'+year+'</font>'+'年'+'<font  color="#ff3300">'+months[todays_date.getMonth()]+'</font>'+"月"+'<font   color="#ff3300">'+date+'</font>'+"日"+"&nbsp;"+"星期"+'<font  color="#ff3300">'+days1[todays_date.getDay()]+'</font>' );                                                                  
	                                                                  
  }
  
  //reloads the window if Nav4 resized
  function MM_reloadPage(init) {  
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

function defaultStatus(){
	var lec = document.all.Msg;
	for (var i=0;i<lec.length;i++){
		document.all.Msg(i).style.border = "1 solid #EFEFEF";
		document.all.Msg(i).style.backgroundColor = "";
	}
}

function mouseOnTD(obj)
{
	obj.style.border = "1 solid gray";
	obj.style.backgroundColor = "white";
	obj.style.cursor = "hand";
}

function ClickOnTD(obj, page,opn){
//	obj.style.border = "1 solid gray";
//	obj.style.backgroundColor = "white";
//	obj.style.cursor = "hand";
//	parent.info.location.href= page;
if(opn==1) window.open(page);
else location.href= page;
}