// JavaScript Document
function printerfriendly(content)
{
var dom = findDOM(content, 0);
var win1 = window.open('print.htm', 'Printscherm', 'height=500, width=643,fullscreen=no,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=no');
win1.document.open();
win1.document.write('<html><head><title>Belegdebroodjes</title><link rel="STYLESHEET" type="text/css" href="assets/print.css"></head><body marginwidth="0" marginheight="0"><table border="0" cellpadding="0" cellspacing="0" width="626px" height="100%"><tr><td valign="top">' + dom.innerHTML + '</td></tr></table></body></html>');
win1.print()
win1.document.close();

}

