function PrintFriendlyPage(ctrlID, contentWidth, sitePath)
{
	var content = document.getElementById(ctrlID);
	var newWindow = window.open('','','');
			
	newWindow.document.write("<html><head><title></title>");
	newWindow.document.write("<link href='" + sitePath + "Helper/Css/Print.css' type='text/css' rel='stylesheet' />");
	//newWindow.document.write("<link href='" + sitePath + "RadControls/TabStrip/Skins/Default/styles.css' type='text/css' rel='stylesheet' />");
	//newWindow.document.write("<script src='" + sitePath + "RadControls/TabStrip/Scripts/3_5_0/RadTabStrip.js' type='text/javascript'></script>");
	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();
}
