function printPage()
{
var a = window. open('','','scrollbars=yes,width=770,height=500');
a.document.open("text/html");
a.document.write('<html><head><title>Print</title><link href=\"/media/ampone/css/amp_sc_styles.css\" rel=\"stylesheet\" type=\"text/css\" /></head><body marginheight="0" topmargin="0" 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();
}