function printVersion(){
   printWindow = window.open();
   printWindow.document.write('<html>');
   printWindow.document.write('<style>p {margin:0px;} body {font-family: Tahoma, Verdana, sans-serif;font-size:12px;}</style>');
   printWindow.document.write('<body>');
   printWindow.document.write(document.getElementById("content").innerHTML);
   printWindow.document.write("<a href=\"javascript:this.window.print();\">Распечатать</a>");
   printWindow.document.write('</body></html>');
   return false;
}