// JavaScript Document
function printerfriendly(content)
{
var dom = findDOM(content, 0);
var win1 = window.open('html/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>Afdrukken...</title><link rel="STYLESHEET" type="text/css" href="../javascript/assets/print.css"></head><body bgcolor="#FFFFFF"><table border="0" cellpadding="0" cellspacing="0" width="626" height="100%"><tr><td valign="top"><img src="../javascript/assets/images/header.jpg" alt="Logo" class="logo">' + dom.innerHTML + '</td></tr></table></body></html>');
win1.print()
win1.document.close();

}

