// JavaScript Document
<!--
var gAutoPrint = true;
function processPrint(value){
var val = document.getElementById(value);	
if (document.getElementById != null){
var html = '<html><body><div class="cont-tbl-bg">';
/*if (document.getElementsByTagName != null){
var headTags = document.getElementsByTagName("head");
if (headTags.length > 0) html += headTags[0].innerHTML;

}
*/

var printReadyElem = val;
if (printReadyElem != null) html += printReadyElem.innerHTML;
else{
alert("Error, no contents.");
return;
}

html += '</div></body></html>';


//var printWin = window.open("","processPrint");
var printWin = window.open('printpage.php','','width=500,height=400,toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no');

printWin.document.open();

printWin.document.write(html);

printWin.document.close();

if (gAutoPrint) printWin.print();

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

}
-->

