function go()
{
var a = window. open('','','scrollbars=yes,width=800,height=600');

a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="skins/print/print.css" type="text/css" />');
a.document.write(document.getElementById('PrintKlaar').innerHTML);
a.document.write('</body></html>');
a.document.close();
a.print();
}

