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>Dolphinwater.nl</title><link rel="stylesheet" href="/css/printcontent.css" type="text/css" /></head><body onLoad="self.print();" id="printwindow"><div>' + content_value + '</div></body></html>');
    docprint.document.close();
    docprint.focus();
}
