function Clickheretoprint()
{
    var content_vlue = document.getElementById("printDiv").innerHTML;
    var docprint = window.open("","","toolbar=yes,location=no,directories=yes,menubar=yes,scrollbars=yes,width=650, height=600, left=100, top=25");
    docprint.document.open();
    docprint.document.write('<html><head><title>Bibliotheekonderzoek.nl</title><link rel="stylesheet" href="http://www.bibliotheekonderzoek.nl/style.css" type="text/css" /></head><body onLoad="self.print();" id="printwindow">' + content_vlue + '</body></html>');
    docprint.document.close();
    docprint.focus();
}