function go()
{
var a = window.open('I&amp;DT | Nieuws','news','scrollbars=yes,width=300,height=300','toolbar=no','location=yes');

a.document.open('text/html');
a.document.write('<html><head><link rel="stylesheet" href="templates/default/css/print_news.css" /><style type="text/css">#frame{background-image:none;background-color:#FFFFFF;}#frame IMG{display:none;}</style></head><body style="padding-left:20px;background-image:none;background-color:#FFFFFF;">');
a.document.write($('news_item').innerHTML);
a.document.write('</body></html>');
a.document.close();
a.print();
}

