var gAutoPrint = true;

function processPrint(){

if (document.getElementById != null){

var html = '';

html += '';

var printReadyElem = document.getElementById("printMe");

if (printReadyElem != null) html += printReadyElem.innerHTML;

else{

alert("Error, no contents.");

return;

}

html += '';

var printWin = window.open("","processPrint");

printWin.document.open();

printWin.document.write(html);

printWin.document.close();

if (gAutoPrint) printWin.print();

} else alert("Browser not supported.");

}

