function printpage() {
  newwindow = window.open("","Printje","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,width=600,height=600")
  newwindow.document.open();
  newwindow.focus();
  newwindow.document.write("<html><head><link rel='stylesheet' ");
  newwindow.document.write("href='/omi/incldstyle/omistylegroen.css' type='text/css'>");
  newwindow.document.write("<META HTTP-EQUIV='imagetoolbar' CONTENT='no'>");
  newwindow.document.write("<META HTTP-EQUIV='MSThemeCompatible' CONTENT='no'>");
  newwindow.document.write("</head>");

  newwindow.document.write("<body onLoad='this.print();'>");
  var body = document.getElementById('printable').innerHTML;
  newwindow.document.write(body);
  newwindow.document.write("</body></html>");
  newwindow.document.close();
}



