function PrintContent()
{
    var content_value = document.getElementById("printContent").innerHTML;
    var docprint = window.open("","","toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=750, height=700, left=100, top=25");
    docprint.document.open();
    docprint.document.write('<html><head><title>Fus.nl - Laatste artikelen</title></head><body onLoad="self.print();" id="printwindow"><style>table, tr, td, a{font-family:verdana;font-size:10px;}</style><div>' + content_value + '</div></body></html>');
    docprint.document.close();
    docprint.focus();
}
