function PrintFriendlyPage(ctrlID, contentWidth)
{
	var content = document.getElementById(ctrlID);
	var newWindow = window.open('','','');
			
	newWindow.document.write("<html><head><title></title>");
	newWindow.document.write("<link href='http://test.republicans.rules.house.gov/Styles/rulesstyle.css' type='text/css' rel='stylesheet' />");
	newWindow.document.write("<style type='text/css'> body { background-image: none !important; } </style>");
	newWindow.document.write("</head><body>");
	newWindow.document.write("<table align='center' width='" + contentWidth + "px'><tr><td>");
	newWindow.document.write(content.innerHTML);
	newWindow.document.write("</td></tr></table>");
	newWindow.document.write("</body></html>");
	newWindow.focus();
}
