function printPage() {
  var pcontent=document.getElementById("printable_content").innerHTML;
  var printpage=window.open("","img","toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,width=600,height=600,top=100,left=100");
  printpage.document.open();
  printpage.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><meta http-equiv="content-type" content="text/html; charset=windows-1250"><title>Printing...</title><link rel="stylesheet" href="css.css" type="text/css"><style>BODY { text-align:left; background-color: #FFFFFF }</style></head><body>');
  printpage.document.writeln(pcontent);
  printpage.document.writeln('</body></html>');
  printpage.document.close();    
  printpage.window.print();  
  printpage.close();
  }
