function go() {
	var a = window.open('','','scrollbars=yes,width=600,height=700');
	a.document.open("text/html");
	a.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	a.document.write('<html xmlns="http://www.w3.org/1999/xhtml">');
	a.document.write('<html style="background-image: none; background-color: #fff;">');
	a.document.write('<head>');
	a.document.write('<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />');
	a.document.write('<link rel="stylesheet" href="http://www.tcomn.com/css/reset-min.css" />');
	a.document.write('<link rel="stylesheet" href="http://www.tcomn.com/css/styles.css" />');
	a.document.write('</head>');
	a.document.write('<body style="padding:20px; background-image:none; background-color: #fff;">');
	a.document.write('<img src="http://www.tcomn.com/images/tco-logo.gif" width="192" height="37" border="0" alt="Twin Cities Orthopedics, P.A." /><br /><br />');
	a.document.write('<div id="inner-content-rgt">');
	a.document.write(document.getElementById('inner-content-rgt').innerHTML);
	a.document.write('</div>');
	a.document.write('</body>');
	a.document.write('</html>');
	a.document.close();
	a.print();
}

