//更改字体大小
var status0='';
var curfontsize=8;
var tfontsize=16;
var curlineheight=10;
var tlineheight=20;
function fontZoomA(){
 document.getElementById('fontzoom').style.fontSize='12px';
 document.getElementById('fontzoom').style.lineHeight='20px';
}
function fontZoomB(){
 document.getElementById('fontzoom').style.fontSize='14px';
 document.getElementById('fontzoom').style.lineHeight='24px';
}
function fontZoomC(){
 document.getElementById('fontzoom').style.fontSize='16px';
 document.getElementById('fontzoom').style.lineHeight='28px';
}

function printit(){
//t=newActiveXObject("WScript.Shell"); 
//t.RegWrite("HKCU\\Software\\Microsoft\\InternetExplorer\\PageSetup\\header",""); 
//t.RegWrite("HKCU\\Software\\Microsoft\\InternetExplorer\\PageSetup\\footer","");
Item=printdiv.innerHTML;
status='fullscreen';
//status="width=0,height=0";
MsgBox=window.open("","print",status);
MsgBox.document.write   ("<html><head><title></title></head><body><div   align=left   width=100%>");
MsgBox.document.write   ("   "+Item+"");
MsgBox.document.write   ("</div></body></html>");
MsgBox.document.close();
MsgBox.print();
MsgBox.close();
}