// 复制
function copyToClipBoard(){
var clipBoardContent='';
clipBoardContent+=document.title;
clipBoardContent+=window.location;
window.clipboardData.setData("Text",clipBoardContent);
alert("你已复制链接地址，请粘贴到QQ/MSN等发给好友!");
}

//切换标签
function g(o){return document.getElementById(o);}
function MyTab6_HoverLi(n)
{
	for(var i=1;i<=5;i++)
	{
	g('MyTab6_'+i).className='ZWtab01';
	g('myTable6_'+i).className='undis';
	}
	g('myTable6_'+n).className='dis';
	g('MyTab6_'+n).className='ZWtab001';
}

//字体大中小
function buttombag(toclick) {
if (toclick == "clicka1")
{
	document.getElementById('fontbag').style.fontSize = '12px';
}
if (toclick == "clicka2")
{
	document.getElementById('fontbag').style.fontSize = '14px';
}
if (toclick == "clicka3")
{
	document.getElementById('fontbag').style.fontSize = '16px';
}
}