function printWindow()
{
var a = window. open('','','scrollbars=yes,width=400,height=500');

a.document.open("text/html");
a.document.write('<html><head><title>Print</title><style>body {background: #ffffff;} td {font-size: 8pt;}</style><link href=\"/media/cessnock/css/pif_styles.css\" rel=\"stylesheet\" type=\"text/css\" /></head><body style=\"margin: 0px; font-size: 8pt;\"><div style=\"background-color: #fff;\">');
a.document.write(document.getElementById('MainContentCell').innerHTML);
a.document.write('</div></body></html>');
a.document.close();
a.print();
}