﻿//-------打印页面--------
function PrintPage() {
 var newWin = window.open('about:blank','','');
 var titleHTML = document.getElementById("Print").innerHTML;
 newWin.document.write(titleHTML);
 newWin.document.location.reload();
 newWin.print();
}

//-------字体大小--------
function fontZoom(size){
	document.getElementById('FontZoom').style.fontSize=size+'px'
}

//-------拷贝--------
function CopyStr(Str) {
    window.clipboardData.setData("Text", Str);
    alert("已复制到剪贴版，您可以按CTRL+V直接粘贴了。");
}
