// JavaScript Document
function addCookie(content){
   if (document.all){
     window.external.addFavorite(window.location.href,content);
    }else if(window.sidebar){
   window.sidebar.addPanel(content, window.location.href, "");
	}
}
//设为首页
function setHomepage(){
if (document.all){
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage(window.location.href);
}else if(window.sidebar){
	if(window.netscape){
		try{netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
			}catch (e){
				alert("亲爱的用户你好：\n你使用的不是IE浏览器，此操作被浏览器阻挡了，你可以选择手动设置为首页！\n给你带来的不便，本站深表歉意。");
			}
		}
	}
}

