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

