function printDocument() {
  newText = document.getElementById('content').innerHTML;
  newWindow = window.open("", "printPage", "toolbar,resizable=1,scrollbars=1,width=800");
  newWindow.document.write('<html><head><link type="text/css" href="print.css" rel="stylesheet" media="screen" /></head><body>' + newText + '</body></html>');
  newWindow.document.close();
  newWindow.print();
}