function Afdrukken()
{
	var content_value = document.getElementById("print").innerHTML;
	var docprint=window.open("","",
		"toolbar=yes,location=no,directories=yes,menubar=yes,"
		+ "scrollbars=yes,width=750, height=600, left=100, top=25");
	docprint.document.open();
	docprint.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">');
	docprint.document.write('<html><head>');
	docprint.document.write(document.getElementsByTagName('head')[0].innerHTML);
	docprint.document.write('<style>body {background:#fff} * {color:#000 !important; background-color:#fff !important}</style></head><body onLoad="self.print()">');
	docprint.document.write(content_value.replace(/<script[\s\S]*?<\/script>/gim, ''));
	docprint.document.write('</body></html>');
	docprint.document.close();
	docprint.focus();
}