var docObj;

function printDocCreate()
{
  var winObj = window.open();
  docObj = winObj.document;
  var sPageTitle='';

	docObj.open("text/html", "replace");
}
function printDocWriteLine(sLine)
{
  docObj.write(sLine);
}
function printDocClose()
{
  docObj.close();
  docObj = null;
}
