<!-- 
  function showdate()
  {                       
	var today = new Date();                                     
	var strDate = ( "" + today.getYear() + "年" + (today.getMonth() + 1) + "月" + today.getDate() + "日");                                     
	var n_day = today.getDay();                                     
	switch (n_day)                                     
	{                                     
	case 0:{                                     
	strDate = strDate + "星期日"                                     
	}break;                                     
	case 1:{                                     
	strDate = strDate + "星期一"                                     
	}break;                                     
	case 2:{                                     
	strDate = strDate + "星期二"                                     
	}break;                                     
	case 3:{                                     
	strDate = strDate + "星期三"                                     
	}break;                                      
	case 4:{                                     
	strDate = strDate + "星期四"                                     
	}break;                                     
	case 5:{                                     
	strDate = strDate + "星期五"                                     
	}break;                                     
	case 6:{                                     
	strDate = strDate + "星期六"                                     
	}break;                                     
	case 7:{                                     
	strDate = strDate + "星期日"                                     
	}break;                                     
	}                                     
	document.write(strDate);                                     
  }


function newsscroll(str,index,height)
{
var tmp_str="<marquee scrollamount='1' scrolldelay='30' direction='up' width='160' height='"+height+"' onmouseover=this.stop() onmouseout=this.start()>";

for (i=0;i<index;i++){
	tmp_str=tmp_str+"<font color='#6687ba'>□ </font><a href='"+str[i][1]+"' target='_blank'>";
	tmp_str=tmp_str+"<font color='#000000' size='2' face='宋体'>"+str[i][0]+"</FONT></a><br>";
}
	tmp_str=tmp_str+"</marquee>";

document.write (tmp_str);

}


