// 设为首页,加入收藏========================================================================================
var isIE=(document.all&&document.getElementById&&!window.opera)?true:false; 
var isMozilla=(!document.all&&document.getElementById&&!window.opera)?true:false; 
var isOpera=(window.opera)?true:false;

function myhomepage()	{

	if(isMozilla){
		try { 
		netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); 
		} 
		catch (e) 
		{ 
		alert("此操作被浏览器拒绝！\n请在浏览器地址栏输入“about:config”并回车\n然后将[signed.applets.codebase_principal_support]设置为'true'"); 
		}
	var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefBranch);
	prefs.setCharPref('browser.startup.homepage','http://www.360tf.com');
	}
	
	if(isIE){
		this.homepage.style.behavior='url(#default#homepage)';
		this.homepage.sethomepage('http://www.360tf.com'); 
	}
}

function addfavorite()
{
	if(isMozilla){
		if (document.all)
		{
		  window.external.addFavorite('http://www.360tf.com','360脱发网');
		}
		else if (window.sidebar)
		{
		  window.sidebar.addPanel('360脱发网-您的头发健康专家', 'http://www.360tf.com', "");
		}
	}
	
	if(isIE){
		window.external.AddFavorite('http://www.360tf.com', '360脱发网-您的头发健康专家');
	}	
} 
function copyURL(){
var u=window.location.toString();
clipboardData.setData('Text',u);
alert("文章已经复制到粘贴板，请按Ctrl+V粘贴");
}

//========================= 设置字体大中小 start =============
	function doZoom(size){
		var textbody = document.getElementById('textbody');
		if(!artibody){
			return;
		}
		var textbodyChild = textbody.childNodes;
		textbody.style.fontSize = size + 'px';
		//再对artibody div内的直接html节点设置fontSize属性
		for(var i = 0; i < textbodyChild.length; i++){
			if(textbodyChild[i].nodeType == 1){
				textbodyChild[i].style.fontSize = size + 'px';
			}
		}		
	}
//========================= 设置字体大中小 end =============

