function Init(filter)
{
		if (filter==1)
		{
			timeshow();
		}
		if (filter==2)
		{
			playerpath();
		}
		if (filter==3)
		{
			timeshow();
			playerpath();
		}
	}
function timeshow()
{
	var mydate = new Date();
		var datestring  = new String(mydate.toDateString());
		var full_show = new String();
	
		//定义显示元素
		var day_show   = new String();
		var week_show  = new String();
		var month_show = new String();
		var year_show  = new String();
	
		//GET VALUE
		day_show   = mydate.getDate();
		week_show  = datestring.slice(0,3);
		month_show = datestring.slice(4,7);
		year_show  = mydate.getFullYear();
	
		//设置显示格式 
		full_show =week_show + " " + month_show + ". " + day_show + ", " + year_show;
				
		//divdate为<div>的ID
		divdate.innerHTML =  full_show;
}


