function go()
{
	var id = $("a.current").filter(function(index){return $(this).attr("id")!= null && $(this).attr("id").indexOf("link") > -1}).attr("href");
	var a = window.open('','','scrollbars=yes,width=800,height=800');
	a.document.open("text/html");
	a.document.write('<html><head><link rel="stylesheet" href="/assets/css/media/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;"><div class="header"><div class="container"><a href="/" title="Cambridge Biomedical Campus Innovation and Excellence in Health and Care" class="logo"><img src="/assets/x/50053" alt="Cambridge Biomedical Campus Innovation and Excellence in Health and Care" /></a></div></div>');
	a.document.write($(id).html());
	a.document.write('</body></html>');
	a.document.close();
	a.print();
}

