function go()
{
var a = window. open('','','scrollbars=yes,width=600,height=600');

a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="/print.css" /><style type="text/css">#frame{background-image:none;background-color:#FFFFFF;}</style></head><body style="padding-left:20px;background-image:none;background-color:#FFFFFF;font-family:Arial;font-size:11pt;">');
a.document.write(document.getElementById('content').innerHTML);
a.document.write('<b>Bron: Sport Knowhow XL (www.skxl.nl)</b> </body></html>');
a.document.close();
a.print();
}

