function body_print() {
      var a = window.open('','','scrollbars=yes,width=900,height=900');
      a.document.open("text/html");
      a.document.write('<html xmlns="http://www.w3.org/1999/xhtml"><head><link rel="stylesheet" href="includes/style.css" /><style type="text/css">#frame{background-image:none;background-color:#FFFFFF;}</style></head><body style="padding:20px;background-image:none;background-color:#FFFFFF;"><table align=center width=800 border=0><tr><td>');
      a.document.write('<tr> 	<td   ><img src="images/print_title.gif"  width="800" height="82"  hspace="0" vspace="0" border="0"/></td></tr><tr><td>');
      a.document.write(document.getElementById('print_body').innerHTML);
      a.document.write('</td></tr></table></body></html>');
      a.document.close();
      a.print();
}