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