//======================================================
//背景缓存 消除IE鼠标划过背景闪烁
//Remove IE mouse flickering
//======================================================
try {
	document.execCommand("BackgroundImageCache", false, true);
}	catch(e) {}

//======================================================
//加入收藏
//======================================================
function addFavorite(url,name){	
	if (window.sidebar)
	{
		window.sidebar.addPanel(name, url, "");
	}
	else if( window.opera && window.print )
	{
		var mbm = document.createElement('a');
		mbm.setAttribute('rel','sidebar');
		mbm.setAttribute('href',url);
		mbm.setAttribute('title',name);
		mbm.click();
	}
	else if (document.all)
	{
		window.external.addFavorite(url,name);
	}
} 



//======================================================
//日期显示
//======================================================
function getDateString(){
	var oDate = new Date();
	
	var month = oDate.getMonth() + 1;
	if (month <= 9)
	 month = "0" + month
	 
	var day = oDate.getDate();
	if (day <= 9)
	 day = "0" + day;
	
	var sDate = oDate.getYear() + "-" + month + "-" + day;
	return sDate;
	
	document.getElementById("datetime").innerHTML = sDate;
}

