﻿// JScript File
function printIt() { 
  htmlcode=window.document.body.innerHTML; 
  sprnstr="<!--startprint-->"; 
  eprnstr="<!--endprint-->"; 
  var prnhtml=htmlcode.substr(htmlcode.indexOf(sprnstr)+17); 
  prnhtml=prnhtml.substr(prnhtml.indexOf(sprnstr)+17);
  prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr)); 
  window.document.body.innerHTML=prnhtml; 
  window.print(); 
  window.document.body.innerHTML=htmlcode;

}

function printing(tb)
{
 /*
 var nw = window.open('','','width=1000,height=1000')
 //nw.document.open("text ml","GB2312")
 //nw.document.write("<link rel='stylesheet' type='text/css' href='css .css'>")
 //nw.document.write("<object classid='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2' id='wb'height='0' width='0'></object>")
 nw.document.write(document.getElementById(tb).outerHTML)
 nw.document.write("<scrip"+"t>print()</sc"+"ript>")
 */
  var nw = window.open('','','width=800,height=600')
 //nw.document.open("text ml","GB2312")
 nw.document.write("<object classid='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2' id='wb'height='0' width='0'></object>")
 nw.document.write(document.getElementById(tb).outerHTML)
 nw.document.write("<scrip"+"t>document.all.wb.ExecWB(7,1)</sc"+"ript>")
}
